Skip to content

Commit

Permalink
fix review notes
Browse files Browse the repository at this point in the history
  • Loading branch information
borngraced committed Oct 5, 2023
1 parent 1901f09 commit bde9aab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 4 additions & 4 deletions zcash_client_sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ async-trait = "0.1.52"
bech32 = "0.9.1"
bs58 = { version = "0.4", features = ["check"] }
ff = "0.8"
futures = { version = "0.3", package = "futures", features = ["compat", "async-await"] }
futures = { version = "0.3" }
group = "0.8"
jubjub = "0.5.1"
protobuf = "2.20"
rand_core = "0.5.1"
rusqlite = { version = "0.28", features = ["bundled", "time"] }
rusqlite = { version = "0.28", features = ["time"] }
libsqlite3-sys= { version = "0.25.2", features = ["bundled"] }
time = "0.3"
tokio = { version = "1.20", features = ["full"] }
time = { version = "0.3", features = ["wasm-bindgen"]}
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" }
Expand Down
4 changes: 1 addition & 3 deletions zcash_extras/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,13 @@ name = "zcash_extras"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-trait = "0.1.52"
group = "0.8"
ff = "0.8"
jubjub = "0.5.1"
protobuf = "2.20"
rand_core = "0.5.1"
time = "0.3"
time = { version = "0.3", features = ["wasm-bindgen"]}
zcash_client_backend = { version = "0.5", path = "../zcash_client_backend" }
zcash_primitives = { version = "0.5", path = "../zcash_primitives" }

0 comments on commit bde9aab

Please sign in to comment.