Skip to content

Commit

Permalink
chore(deps): bump tonic from 0.5.2 to 0.6.1 (#9847)
Browse files Browse the repository at this point in the history
* chore(deps): bump tonic from 0.5.2 to 0.6.1

Bumps [tonic](https://github.com/hyperium/tonic) from 0.5.2 to 0.6.1.
- [Release notes](https://github.com/hyperium/tonic/releases)
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.5.2...v0.6.1)

---
updated-dependencies:
- dependency-name: tonic
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Upgrade prost and tonic-build libraries

To match new tonic version

Signed-off-by: Jesse Szwedko <jesse@szwedko.me>

* Drop unnneeded Sync

Signed-off-by: Jesse Szwedko <jesse@szwedko.me>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Szwedko <jesse@szwedko.me>
  • Loading branch information
dependabot[bot] and jszwedko committed Dec 4, 2021
1 parent 70da9f5 commit 2d125eb
Show file tree
Hide file tree
Showing 5 changed files with 155 additions and 43 deletions.
174 changes: 143 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Expand Up @@ -174,8 +174,8 @@ rmp-serde = { version = "0.15.5", default-features = false, optional = true }
rmpv = { version = "1.0.0", default-features = false, features = ["with-serde"], optional = true }

# Prost
prost = { version = "0.8", default-features = false, features = ["std"] }
prost-types = { version = "0.8", default-features = false }
prost = { version = "0.9", default-features = false, features = ["std"] }
prost-types = { version = "0.9", default-features = false }

# GCP
goauth = { version = "0.10.0", default-features = false, optional = true }
Expand Down Expand Up @@ -290,7 +290,7 @@ url = { version = "2.2.2", default-features = false, features = ["serde"] }
uuid = { version = "0.8.2", default-features = false, features = ["serde", "v4"], optional = true }
warp = { version = "0.3.1", default-features = false, optional = true }
zstd = { version = "0.6", default-features = false, optional = true }
tonic = { version = "0.5", optional = true, default-features = false, features = ["transport", "codegen", "prost", "tls"] }
tonic = { version = "0.6", optional = true, default-features = false, features = ["transport", "codegen", "prost", "tls"] }
data-encoding = { version = "2.2", default-features = false, features = ["std"], optional = true }
trust-dns-proto = { version = "0.20", features = ["dnssec"], optional = true }

Expand All @@ -306,8 +306,8 @@ atty = "0.2.14"
nix = "0.22.2"

[build-dependencies]
prost-build = { version = "0.8", optional = true }
tonic-build = { version = "0.5", default-features = false, features = ["transport", "prost"], optional = true }
prost-build = { version = "0.9", optional = true }
tonic-build = { version = "0.6", default-features = false, features = ["transport", "prost"], optional = true }

[dev-dependencies]
approx = "0.5.0"
Expand Down
6 changes: 3 additions & 3 deletions lib/prometheus-parser/Cargo.toml
Expand Up @@ -12,10 +12,10 @@ license = "MPL-2.0"
indexmap = "~1.7.0"
nom = "7.1.0"
num_enum = "0.5.4"
prost = "0.8"
prost-types = "0.8"
prost = "0.9"
prost-types = "0.9"
shared = { path = "../shared", features = ["btreemap"] }
snafu = { version = "0.6" }

[build-dependencies]
prost-build = "0.8"
prost-build = "0.9"
6 changes: 3 additions & 3 deletions lib/vector-core/Cargo.toml
Expand Up @@ -35,8 +35,8 @@ ordered-float = { version = "2.8.0", default-features = false }
pest = { version = "2.1.3", default-features = false }
pest_derive = { version = "2.1.0", default-features = false }
pin-project = { version = "1.0.8", default-features = false }
prost = { version = "0.8", default-features = false }
prost-types = { version = "0.8", default-features = false }
prost = { version = "0.9", default-features = false }
prost-types = { version = "0.9", default-features = false }
regex = { version = "1.5.4", default-features = false, features = ["std", "perf"] }
serde = { version = "1.0.130", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.68", default-features = false }
Expand All @@ -57,7 +57,7 @@ twox-hash = { version = "1.6.1", default-features = false }
vrl-core = { package = "vrl", path = "../vrl/core", optional = true }

[build-dependencies]
prost-build = "0.8"
prost-build = "0.9"

[dev-dependencies]
core_common = { path = "core-common", default-features = false, features = ["test"] }
Expand Down
2 changes: 1 addition & 1 deletion src/sinks/util/test.rs
Expand Up @@ -58,7 +58,7 @@ pub fn build_test_server_generic<B>(
impl std::future::Future<Output = Result<(), ()>>,
)
where
B: HttpBody + Send + Sync + 'static,
B: HttpBody + Send + 'static,
<B as HttpBody>::Data: Send + Sync,
<B as HttpBody>::Error: snafu::Error + Send + Sync,
{
Expand Down

0 comments on commit 2d125eb

Please sign in to comment.