Update workspace and dependency paths

This commit is contained in:
Pratyush Mishra
2020-09-18 16:01:05 -07:00
parent d087166c51
commit cf4301cb75
5 changed files with 13 additions and 69 deletions

View File

@@ -22,17 +22,17 @@ edition = "2018"
################################# Dependencies ################################
[dependencies]
algebra-core = { path = "../algebra-core", default-features = false }
bench-utils = { path = "../bench-utils" }
algebra-core = { git = "https://github.com/scipr-lab/zexe", default-features = false }
bench-utils = { git = "https://github.com/scipr-lab/zexe" }
blake2 = { version = "0.8", default-features = false }
digest = "0.8"
ff-fft = { path = "../ff-fft", default-features = false }
gm17 = { path = "../gm17", optional = true, default-features = false }
groth16 = { path = "../groth16", optional = true, default-features = false }
ff-fft = { git = "https://github.com/scipr-lab/zexe", default-features = false }
gm17 = { git = "https://github.com/scipr-lab/zexe", optional = true, default-features = false }
groth16 = { git = "https://github.com/scipr-lab/zexe", optional = true, default-features = false }
r1cs-core = { path = "../r1cs-core", optional = true, default-features = false }
r1cs-core = { git = "https://github.com/scipr-lab/zexe", optional = true, default-features = false }
r1cs-std = { path = "../r1cs-std", optional = true, default-features = false }
rand = { version = "0.7", default-features = false }
@@ -47,6 +47,6 @@ std = [ "algebra-core/std", "r1cs-core/std", "r1cs-std/std"]
parallel = ["std", "rayon", "gm17/parallel", "groth16/parallel", "ff-fft/parallel"]
[dev-dependencies]
algebra = { path = "../algebra", default-features = false, features = [ "ed_on_bls12_381", "bls12_377", "mnt4_298", "mnt6_298" ] }
algebra = { git = "https://github.com/scipr-lab/zexe", default-features = false, features = [ "ed_on_bls12_381", "bls12_377", "mnt4_298", "mnt6_298" ] }
r1cs-std = { path = "../r1cs-std", default-features = false, features = [ "ed_on_bls12_381", "bls12_377", "mnt4_298", "mnt6_298" ] }
rand_xorshift = { version = "0.2" }