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,8 +22,8 @@ edition = "2018"
################################# Dependencies ################################
[dependencies]
algebra = { path = "../algebra", default-features = false }
r1cs-core = { path = "../r1cs-core", default-features = false }
algebra = { git = "https://github.com/scipr-lab/zexe", default-features = false }
r1cs-core = { git = "https://github.com/scipr-lab/zexe", default-features = false }
derivative = { version = "2", features = ["use_core"] }
tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
@@ -32,7 +32,7 @@ rand = { version = "0.7", default-features = false }
rand_xorshift = { version = "0.2" }
# Currently this means that all downstream users of `r1cs-std` will be using
# `algebra` with the `bls12_381` feature. This is because of a cargo bug.
algebra = { path = "../algebra", default-features = false, features = [ "bls12_381" ] }
algebra = { git = "https://github.com/scipr-lab/zexe", default-features = false, features = [ "bls12_381" ] }
[features]
default = ["std"]