Depend on published versions of subtree crates

This commit is contained in:
Jack Grigg 2020-08-27 23:25:20 +01:00
parent 50140c521a
commit 3f06d92eec
4 changed files with 16 additions and 16 deletions

View File

@ -13,12 +13,12 @@ edition = "2018"
[dependencies]
bech32 = "0.7"
bls12_381 = { version = "0.2", path = "../bls12_381" }
bls12_381 = "0.2"
bs58 = { version = "0.3", features = ["check"] }
ff = { version = "0.7", path = "../ff" }
group = { version = "0.7", path = "../group" }
ff = "0.7"
group = "0.7"
hex = "0.4"
jubjub = { version = "0.4", path = "../jubjub" }
jubjub = "0.4"
protobuf = "=2.14.0" # 2.15 has MSRV of 1.44.1
subtle = "2"
zcash_primitives = { version = "0.3", path = "../zcash_primitives" }

View File

@ -14,9 +14,9 @@ edition = "2018"
[dependencies]
bech32 = "0.7"
bs58 = { version = "0.3", features = ["check"] }
ff = { version = "0.7", path = "../ff" }
group = { version = "0.7", path = "../group" }
jubjub = { version = "0.4", path = "../jubjub" }
ff = "0.7"
group = "0.7"
jubjub = "0.4"
protobuf = "2"
rand_core = "0.5.1"
rusqlite = { version = "0.23", features = ["bundled"] }

View File

@ -18,15 +18,15 @@ all-features = true
aes = "0.5"
blake2b_simd = "0.5"
blake2s_simd = "0.5"
bls12_381 = { version = "0.2", path = "../bls12_381" }
bls12_381 = "0.2"
byteorder = "1"
crypto_api_chachapoly = "0.4"
equihash = { version = "0.1", path = "../components/equihash" }
ff = { version = "0.7", path = "../ff" }
ff = "0.7"
fpe = "0.3"
group = { version = "0.7", path = "../group" }
group = "0.7"
hex = "0.4"
jubjub = { version = "0.4", path = "../jubjub" }
jubjub = "0.4"
lazy_static = "1"
log = "0.4"
rand = "0.7"

View File

@ -15,14 +15,14 @@ edition = "2018"
all-features = true
[dependencies]
bellman = { version = "0.7", path = "../bellman", default-features = false, features = ["groth16"] }
bellman = { version = "0.7", default-features = false, features = ["groth16"] }
blake2b_simd = "0.5"
bls12_381 = { version = "0.2", path = "../bls12_381" }
bls12_381 = "0.2"
byteorder = "1"
directories = { version = "3", optional = true }
ff = { version = "0.7", path = "../ff" }
group = { version = "0.7", path = "../group" }
jubjub = { version = "0.4", path = "../jubjub" }
ff = "0.7"
group = "0.7"
jubjub = "0.4"
lazy_static = "1"
minreq = { version = "2", features = ["https"], optional = true }
rand_core = "0.5.1"