Skip to content

Commit

Permalink
Remove paths from dependencies
Browse files Browse the repository at this point in the history
Now that we have extracted the release changes from the
zcash/librustzcash subtree, we are no longer in a workspace with
relative paths to these dependencies.
  • Loading branch information
str4d committed Aug 25, 2020
1 parent 2278907 commit 212f8ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ edition = "2018"
[dependencies]
bit-vec = "0.6"
blake2s_simd = "0.5"
ff = { version = "0.7", path = "../ff" }
ff = "0.7"
futures = "0.1"
futures-cpupool = { version = "0.1", optional = true }
group = { version = "0.7", path = "../group" }
group = "0.7"
num_cpus = { version = "1", optional = true }
crossbeam = { version = "0.7", optional = true }
pairing = { version = "0.17", path = "../pairing", optional = true }
pairing = { version = "0.17", optional = true }
rand_core = "0.5"
byteorder = "1"
subtle = "2.2.1"

[dev-dependencies]
bls12_381 = { version = "0.2", path = "../bls12_381" }
bls12_381 = "0.2"
hex-literal = "0.2"
rand = "0.7"
rand_xorshift = "0.2"
Expand Down

0 comments on commit 212f8ae

Please sign in to comment.