From 70f050be610a24faa0be7f51113de6e0d8b9593d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 10:03:49 +0000 Subject: [PATCH] build(deps): bump prost from 0.12.6 to 0.13.3 Bumps [prost](https://github.com/tokio-rs/prost) from 0.12.6 to 0.13.3. - [Release notes](https://github.com/tokio-rs/prost/releases) - [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/prost/compare/v0.12.6...v0.13.3) --- updated-dependencies: - dependency-name: prost dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 33 ++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3841835..fd35c4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1607,7 +1607,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" dependencies = [ "bytes", - "prost-derive", + "prost-derive 0.12.6", +] + +[[package]] +name = "prost" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" +dependencies = [ + "bytes", + "prost-derive 0.13.3", ] [[package]] @@ -1624,7 +1634,7 @@ dependencies = [ "once_cell", "petgraph", "prettyplease", - "prost", + "prost 0.12.6", "prost-types", "regex", "syn 2.0.72", @@ -1644,13 +1654,26 @@ dependencies = [ "syn 2.0.72", ] +[[package]] +name = "prost-derive" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" +dependencies = [ + "anyhow", + "itertools 0.13.0", + "proc-macro2", + "quote", + "syn 2.0.72", +] + [[package]] name = "prost-types" version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" dependencies = [ - "prost", + "prost 0.12.6", ] [[package]] @@ -2508,7 +2531,7 @@ dependencies = [ "hyper-timeout", "percent-encoding", "pin-project", - "prost", + "prost 0.12.6", "rustls-pemfile 2.0.0", "rustls-pki-types", "tokio", @@ -3098,7 +3121,7 @@ dependencies = [ "lazy_static", "macaddr", "network-interface", - "prost", + "prost 0.13.3", "prost-build", "rand", "sqlx", diff --git a/Cargo.toml b/Cargo.toml index b5d9165..13dc3f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ x25519-dalek = "2.0.1" # grpc tonic = { version = "0.11", features = ["tls", "tls-webpki-roots"]} -prost = "0.12.6" +prost = "0.13.3" tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync", "net", "process", "signal"] } tokio-stream = { version = "0.1", features = ["net", "time"] } async-stream = "0.3"