diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index 140d6d57b..a4ce4290e 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -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" } diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 32b5db3ca..d0979aa79 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -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"] } diff --git a/zcash_primitives/Cargo.toml b/zcash_primitives/Cargo.toml index c60d94f32..393ab55cd 100644 --- a/zcash_primitives/Cargo.toml +++ b/zcash_primitives/Cargo.toml @@ -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" diff --git a/zcash_proofs/Cargo.toml b/zcash_proofs/Cargo.toml index 6dc1bbdd9..b1b83b768 100644 --- a/zcash_proofs/Cargo.toml +++ b/zcash_proofs/Cargo.toml @@ -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"