summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2023-09-16 21:41:43 +0200
committerGitHub <noreply@github.com>2023-09-16 21:41:43 +0200
commit3407de82c89931d87de49f57e23fa91343c959df (patch)
treed9fdc6bc42977230f4d233131db0c45f92354390
parent3b92cd7593a900d3c79c2aeb411f90be052a9a5c (diff)
axum-extra 0.8.0 (#2226)axum-extra-v0.8.0
-rw-r--r--axum-extra/CHANGELOG.md6
-rw-r--r--axum-extra/Cargo.toml4
-rw-r--r--axum-macros/Cargo.toml2
-rw-r--r--deny.toml2
4 files changed, 11 insertions, 3 deletions
diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md
index 4171478c..84d69054 100644
--- a/axum-extra/CHANGELOG.md
+++ b/axum-extra/CHANGELOG.md
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning].
- None.
+# 0.8.0 (16. September, 2023)
+
+- **breaking:** Update to prost 0.12. Used for the `Protobuf` extractor ([#2224])
+
+[#2224]: https://github.com/tokio-rs/axum/pull/2224
+
# 0.7.7 (03. August, 2023)
- **added:** `Clone` implementation for `ErasedJson` ([#2142])
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index cd4854fc..b700a797 100644
--- a/axum-extra/Cargo.toml
+++ b/axum-extra/Cargo.toml
@@ -9,7 +9,7 @@ license = "MIT"
name = "axum-extra"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
-version = "0.7.7"
+version = "0.8.0"
[features]
default = []
@@ -54,7 +54,7 @@ cookie = { package = "cookie", version = "0.17", features = ["percent-encode"],
form_urlencoded = { version = "1.1.0", optional = true }
multer = { version = "2.0.0", optional = true }
percent-encoding = { version = "2.1", optional = true }
-prost = { version = "0.11", optional = true }
+prost = { version = "0.12", optional = true }
serde_html_form = { version = "0.2.0", optional = true }
serde_json = { version = "1.0.71", optional = true }
tokio-stream = { version = "0.1.9", optional = true }
diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml
index 4520209b..5c9c2892 100644
--- a/axum-macros/Cargo.toml
+++ b/axum-macros/Cargo.toml
@@ -31,7 +31,7 @@ syn = { version = "2.0", features = [
[dev-dependencies]
axum = { path = "../axum", version = "0.6.0", features = ["headers", "macros"] }
-axum-extra = { path = "../axum-extra", version = "0.7.0", features = ["typed-routing", "cookie-private"] }
+axum-extra = { path = "../axum-extra", version = "0.8.0", features = ["typed-routing", "cookie-private"] }
rustversion = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
diff --git a/deny.toml b/deny.toml
index ab96ec4d..18c85aad 100644
--- a/deny.toml
+++ b/deny.toml
@@ -33,6 +33,8 @@ skip-tree = [
{ name = "indexmap" },
# pulled in by axum, can't update without breaking changes
{ name = "bitflags" },
+ # pulled in by hyper
+ { name = "socket2" },
]
[sources]