From 76cb48ebe089a2972ad406e35ce04fff77bc12b4 Mon Sep 17 00:00:00 2001 From: xumaple <45406854+xumaple@users.noreply.github.com> Date: Thu, 9 Oct 2025 01:03:51 -0400 Subject: [PATCH] Upgrade axum-extra to prost v0.14 (#3517) Co-authored-by: Maple Xu --- Cargo.lock | 8 ++++---- axum-extra/CHANGELOG.md | 2 ++ axum-extra/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b3ad2c2f..4ca4ac92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3611,9 +3611,9 @@ dependencies = [ [[package]] name = "prost" -version = "0.13.4" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" +checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d" dependencies = [ "bytes", "prost-derive", @@ -3621,9 +3621,9 @@ dependencies = [ [[package]] name = "prost-derive" -version = "0.13.4" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" +checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425" dependencies = [ "anyhow", "itertools", diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index 61539fbe..36061600 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -16,10 +16,12 @@ and this project adheres to [Semantic Versioning]. - `OptionalPath` extractor requires `optional-path` feature. - The routing utilities require `routing` feature. - `WithRejection` extractor requires `with-rejection` feature. +- **breaking:** Upgraded `prost` dependency to v0.14. ([#3517]) [#3298]: https://github.com/tokio-rs/axum/pull/3298 [#3469]: https://github.com/tokio-rs/axum/pull/3469 [#3485]: https://github.com/tokio-rs/axum/pull/3485 +[#3517]: https://github.com/tokio-rs/axum/pull/3517 # 0.11.0 diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 775c6b81..1a24c6c4 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -122,7 +122,7 @@ form_urlencoded = { version = "1.1.0", optional = true } headers = { version = "0.4.0", optional = true } multer = { version = "3.0.0", optional = true } percent-encoding = { version = "2.1", optional = true } -prost = { version = "0.13", optional = true } +prost = { version = "0.14", optional = true } rustversion = { version = "1.0.9", optional = true } serde_core = { version = "1.0.221", optional = true } serde_html_form = { version = "0.2.0", optional = true }