build(deps): bump tonic from 0.8.3 to 0.9.1 (#6455)
* build(deps): bump tonic from 0.8.3 to 0.9.1 Bumps [tonic](https://github.com/hyperium/tonic) from 0.8.3 to 0.9.1. - [Release notes](https://github.com/hyperium/tonic/releases) - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/tonic/compare/v0.8.3...v0.9.1) --- updated-dependencies: - dependency-name: tonic dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Adds tonic 0.8.3 to deny.toml --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: arya2 <aryasolhi@gmail.com>
This commit is contained in:
parent
4aac506999
commit
4fcb5b9de9
34
Cargo.lock
34
Cargo.lock
|
|
@ -817,7 +817,7 @@ checksum = "e57ff02e8ad8e06ab9731d5dc72dc23bef9200778eae1a89d555d8c42e5d4a86"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"prost",
|
"prost",
|
||||||
"prost-types",
|
"prost-types",
|
||||||
"tonic",
|
"tonic 0.8.3",
|
||||||
"tracing-core",
|
"tracing-core",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
@ -839,7 +839,7 @@ dependencies = [
|
||||||
"thread_local",
|
"thread_local",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-stream",
|
"tokio-stream",
|
||||||
"tonic",
|
"tonic 0.8.3",
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-core",
|
"tracing-core",
|
||||||
"tracing-subscriber 0.3.16",
|
"tracing-subscriber 0.3.16",
|
||||||
|
|
@ -4715,6 +4715,34 @@ dependencies = [
|
||||||
"tracing-futures",
|
"tracing-futures",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tonic"
|
||||||
|
version = "0.9.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "38bd8e87955eb13c1986671838177d6792cdc52af9bffced0d2c8a9a7f741ab3"
|
||||||
|
dependencies = [
|
||||||
|
"async-trait",
|
||||||
|
"axum",
|
||||||
|
"base64 0.21.0",
|
||||||
|
"bytes",
|
||||||
|
"futures-core",
|
||||||
|
"futures-util",
|
||||||
|
"h2",
|
||||||
|
"http",
|
||||||
|
"http-body",
|
||||||
|
"hyper",
|
||||||
|
"hyper-timeout",
|
||||||
|
"percent-encoding",
|
||||||
|
"pin-project",
|
||||||
|
"prost",
|
||||||
|
"tokio",
|
||||||
|
"tokio-stream",
|
||||||
|
"tower",
|
||||||
|
"tower-layer",
|
||||||
|
"tower-service",
|
||||||
|
"tracing",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tonic-build"
|
name = "tonic-build"
|
||||||
version = "0.8.4"
|
version = "0.8.4"
|
||||||
|
|
@ -5945,7 +5973,7 @@ dependencies = [
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-stream",
|
"tokio-stream",
|
||||||
"toml 0.7.3",
|
"toml 0.7.3",
|
||||||
"tonic",
|
"tonic 0.9.1",
|
||||||
"tonic-build",
|
"tonic-build",
|
||||||
"tower",
|
"tower",
|
||||||
"tracing",
|
"tracing",
|
||||||
|
|
|
||||||
|
|
@ -78,6 +78,9 @@ skip-tree = [
|
||||||
|
|
||||||
# Test-only dependencies
|
# Test-only dependencies
|
||||||
|
|
||||||
|
# wait for console-api -> console-subscriber to upgrade
|
||||||
|
{ name = "tonic", version = "=0.8.3" },
|
||||||
|
|
||||||
# wait for tokio-test -> tokio-stream to upgrade
|
# wait for tokio-test -> tokio-stream to upgrade
|
||||||
{ name = "tokio-util", version = "=0.6.10" },
|
{ name = "tokio-util", version = "=0.6.10" },
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -193,7 +193,7 @@ tokio-stream = "0.1.12"
|
||||||
|
|
||||||
# test feature lightwalletd-grpc-tests
|
# test feature lightwalletd-grpc-tests
|
||||||
prost = "0.11.8"
|
prost = "0.11.8"
|
||||||
tonic = "0.8.0"
|
tonic = "0.9.1"
|
||||||
|
|
||||||
proptest = "1.1.0"
|
proptest = "1.1.0"
|
||||||
proptest-derive = "0.3.0"
|
proptest-derive = "0.3.0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue