mirror of https://github.com/tokio-rs/axum
axum-extra: Version 0.2.0
This commit is contained in:
parent
f69d2dbf40
commit
5d0a7b440c
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.2.0 (31. March, 2022)
|
||||
|
||||
- **added:** Add `TypedPath::to_uri` for converting the path into a `Uri` ([#790])
|
||||
- **added:** Extractors and responses for dealing with cookies. See `extract::cookies` for more
|
||||
details ([#816])
|
||||
|
|
|
@ -8,7 +8,7 @@ license = "MIT"
|
|||
name = "axum-extra"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.1.5"
|
||||
version = "0.2.0"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
@ -17,7 +17,7 @@ typed-routing = ["axum-macros", "serde", "percent-encoding"]
|
|||
cookie = ["cookie-lib"]
|
||||
|
||||
[dependencies]
|
||||
axum = { path = "../axum", version = "0.4" }
|
||||
axum = { path = "../axum", version = "0.5" }
|
||||
bytes = "1.1.0"
|
||||
http = "0.2"
|
||||
mime = "0.3"
|
||||
|
@ -28,14 +28,14 @@ tower-layer = "0.3"
|
|||
tower-service = "0.3"
|
||||
|
||||
# optional dependencies
|
||||
axum-macros = { path = "../axum-macros", version = "0.1", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "0.2", optional = true }
|
||||
serde = { version = "1.0", optional = true }
|
||||
serde_json = { version = "1.0.71", optional = true }
|
||||
percent-encoding = { version = "2.1", optional = true }
|
||||
cookie-lib = { package = "cookie", version = "0.16", features = ["percent-encode", "signed"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
axum = { path = "../axum", version = "0.4", features = ["headers"] }
|
||||
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
||||
hyper = "0.14"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
tokio = { version = "1.14", features = ["full"] }
|
||||
|
|
|
@ -21,7 +21,7 @@ syn = { version = "1.0", features = ["full"] }
|
|||
|
||||
[dev-dependencies]
|
||||
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
||||
axum-extra = { path = "../axum-extra", version = "0.1", features = ["typed-routing"] }
|
||||
axum-extra = { path = "../axum-extra", version = "0.2", features = ["typed-routing"] }
|
||||
rustversion = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
|
|
Loading…
Reference in New Issue