Skip to content

Commit

Permalink
remove redundancy crate decl
Browse files Browse the repository at this point in the history
  • Loading branch information
borngraced committed Oct 27, 2023
1 parent 7039054 commit b381253
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 6 additions & 0 deletions zcash_client_backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,14 @@ rand_core = "0.5.1"
rand_xorshift = "0.2"
tempfile = "3.1.0"
zcash_client_sqlite = { version = "0.3", path = "../zcash_client_sqlite" }

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
zcash_proofs = { version = "0.5", path = "../zcash_proofs", default-features = false, features = ["local-prover"]}


[features]
test-dependencies = ["proptest", "zcash_primitives/test-dependencies"]

Expand Down
7 changes: 1 addition & 6 deletions zcash_client_sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,12 @@ protobuf = "2.20"
rand_core = "0.5.1"
rusqlite = { version = "0.28", features = ["time"] }
libsqlite3-sys= { version = "0.25.2", features = ["bundled"] }
time = "0.3.20"
tokio = { version = "1.20", features = ["rt"] }
zcash_client_backend = { version = "0.5", path = "../zcash_client_backend" }
zcash_extras = { version = "0.1", path = "../zcash_extras" }
zcash_primitives = { version = "0.5", path = "../zcash_primitives" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
time = "0.3.20"

[target.'cfg(target_arch = "wasm32")'.dependencies]
time = { version = "0.3.20", features = ["wasm-bindgen"]}

[dev-dependencies]
rand_core = "0.5.1"
tempfile = "3"
Expand Down

0 comments on commit b381253

Please sign in to comment.