From c414fe221a18ba9d38df1444c2fcc8d49485f10b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onur=20=C3=96zkan?= Date: Wed, 13 Aug 2025 06:29:52 +0300 Subject: [PATCH 1/2] bump `prost` from `0.13` to `0.14` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Onur Özkan --- abci/Cargo.toml | 2 +- p2p/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- tendermint/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/abci/Cargo.toml b/abci/Cargo.toml index 3b3a2e18d..593d43539 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -32,7 +32,7 @@ binary = [ [dependencies] bytes = { version = "1.0", default-features = false } -prost = { version = "0.13", default-features = false } +prost = { version = "0.14", default-features = false } tendermint-proto = { version = "0.40.4", default-features = false, path = "../proto" } tracing = { version = "0.1", default-features = false } flex-error = { version = "0.4.4", default-features = false } diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index 47421303f..6059255e4 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -34,7 +34,7 @@ eyre = { version = "0.6", default-features = false } flume = { version = "0.11.0", default-features = false } hkdf = { version = "0.12.3", default-features = false } merlin = { version = "3", default-features = false } -prost = { version = "0.13", default-features = false } +prost = { version = "0.14", default-features = false } rand_core = { version = "0.6", default-features = false, features = ["std"] } sha2 = { version = "0.10", default-features = false } subtle = { version = "2", default-features = false } diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 467e1d162..f112792e1 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -26,7 +26,7 @@ parity-scale-codec = ["dep:parity-scale-codec", "dep:scale-info"] all-features = true [dependencies] -prost = { version = "0.13", default-features = false, features = ["derive"] } +prost = { version = "0.14", default-features = false, features = ["derive"] } bytes = { version = "1.0", default-features = false, features = ["serde"]} serde = { version = "1.0", default-features = false, features = ["derive"] } serde_bytes = { version = "0.11", default-features = false, features = ["alloc"] } diff --git a/tendermint/Cargo.toml b/tendermint/Cargo.toml index 438aaa5d4..602865f98 100644 --- a/tendermint/Cargo.toml +++ b/tendermint/Cargo.toml @@ -35,7 +35,7 @@ ed25519 = { version = "2", default-features = false, features = ["alloc"] } futures = { version = "0.3", default-features = false } num-traits = { version = "0.2", default-features = false } once_cell = { version = "1.3", default-features = false } -prost = { version = "0.13", default-features = false } +prost = { version = "0.14", default-features = false } serde = { version = "1", default-features = false, features = ["derive"] } serde_json = { version = "1", default-features = false, features = ["alloc"] } serde_bytes = { version = "0.11", default-features = false } From 7fbe7880620923e93b02c02e69078042f66b7987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onur=20=C3=96zkan?= Date: Wed, 13 Aug 2025 06:33:28 +0300 Subject: [PATCH 2/2] add .changelog entry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Onur Özkan --- .changelog/unreleased/dependencies/1509-bump-prost.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .changelog/unreleased/dependencies/1509-bump-prost.md diff --git a/.changelog/unreleased/dependencies/1509-bump-prost.md b/.changelog/unreleased/dependencies/1509-bump-prost.md new file mode 100644 index 000000000..ec96fd82c --- /dev/null +++ b/.changelog/unreleased/dependencies/1509-bump-prost.md @@ -0,0 +1,2 @@ +- Update prost to v0.14 + ([#1509](https://github.com/cometbft/tendermint-rs/pull/1509))