axum-extra 0.8.0 (#2226)

This commit is contained in:
David Pedersen
2023-09-16 21:41:43 +02:00
committed by GitHub
parent 3b92cd7593
commit 3407de82c8
4 changed files with 11 additions and 3 deletions
+6
View File
@@ -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])
+2 -2
View File
@@ -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 }
+1 -1
View File
@@ -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"
+2
View File
@@ -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]