Skip to content

Commit

Permalink
chore(deps): bump tonic-build from 0.8.4 to 0.9.2 (vectordotdev#17274)
Browse files Browse the repository at this point in the history
* chore(deps): bump tonic-build from 0.8.4 to 0.9.2

Bumps [tonic-build](https://github.com/hyperium/tonic) from 0.8.4 to 0.9.2.
- [Release notes](https://github.com/hyperium/tonic/releases)
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.8.4...v0.9.2)

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

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

* chore: Surpress clippy lint in pubsub proto

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Spencer Gilbert <spencer.gilbert@datadoghq.com>
  • Loading branch information
dependabot[bot] and spencergilbert authored May 2, 2023
1 parent 4335b0a commit e0a07c6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ nix = { version = "0.26.2", default-features = false, features = ["socket", "sig

[build-dependencies]
prost-build = { version = "0.11", default-features = false, optional = true }
tonic-build = { version = "0.8", default-features = false, features = ["transport", "prost"], optional = true }
tonic-build = { version = "0.9", default-features = false, features = ["transport", "prost"], optional = true }
openssl-src = { version = "111", default-features = false, features = ["force-engine"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion lib/opentelemetry-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false

[build-dependencies]
prost-build = { version = "0.11", default-features = false}
tonic-build = { version = "0.8", default-features = false, features = ["prost", "transport"] }
tonic-build = { version = "0.9", default-features = false, features = ["prost", "transport"] }

[dependencies]
bytes = { version = "1.4.0", default-features = false, features = ["serde"] }
Expand Down
2 changes: 2 additions & 0 deletions src/sources/gcp_pubsub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ type Finalizer = UnorderedFinalizer<Vec<String>>;
// objects, which causes a clippy ding on this block. We don't
// directly control the generated code, so allow this lint here.
#[allow(clippy::clone_on_ref_ptr)]
// https://github.com/hyperium/tonic/issues/1350
#[allow(clippy::missing_const_for_fn)]
#[allow(warnings)]
mod proto {
include!(concat!(env!("OUT_DIR"), "/google.pubsub.v1.rs"));
Expand Down

0 comments on commit e0a07c6

Please sign in to comment.