Skip to content

Commit

Permalink
zcash_client_backend: Migrate to tonic 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Apr 11, 2023
1 parent 43eed3d commit 3fb66a8
Show file tree
Hide file tree
Showing 3 changed files with 181 additions and 38 deletions.
3 changes: 2 additions & 1 deletion zcash_client_backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ and this library adheres to Rust's notion of
## [Unreleased]

### Changed
- Bumped dependencies to `bls12_381 0.8`, `group 0.13`, `orchard 0.4`.
- Bumped dependencies to `bls12_381 0.8`, `group 0.13`, `orchard 0.4`,
`tonic 0.9`.
- The dependency on `zcash_primitives` no longer enables the `multicore` feature
by default in order to support compilation under `wasm32-wasi`. Users of other
platforms may need to include an explicit dependency on `zcash_primitives`
Expand Down
4 changes: 2 additions & 2 deletions zcash_client_backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ tracing = "0.1"

# - Protobuf interfaces and gRPC bindings
prost = "0.11"
tonic = { version = "0.8", optional = true }
tonic = { version = "0.9", optional = true }

# - Secret management
secrecy = "0.8"
Expand Down Expand Up @@ -72,7 +72,7 @@ crossbeam-channel = "0.5"
rayon = "1.5"

[build-dependencies]
tonic-build = "0.8"
tonic-build = "0.9"
which = "4"

[dev-dependencies]
Expand Down
Loading

0 comments on commit 3fb66a8

Please sign in to comment.