mirror of
https://github.com/tokio-rs/axum.git
synced 2025-10-03 07:44:52 +00:00
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
|
# Unreleased
|
||||||
|
|
||||||
|
- None.
|
||||||
|
|
||||||
|
# 0.2.0 (31. March, 2022)
|
||||||
|
|
||||||
- **added:** Add `TypedPath::to_uri` for converting the path into a `Uri` ([#790])
|
- **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
|
- **added:** Extractors and responses for dealing with cookies. See `extract::cookies` for more
|
||||||
details ([#816])
|
details ([#816])
|
||||||
|
@ -8,7 +8,7 @@ license = "MIT"
|
|||||||
name = "axum-extra"
|
name = "axum-extra"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/axum"
|
repository = "https://github.com/tokio-rs/axum"
|
||||||
version = "0.1.5"
|
version = "0.2.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
@ -17,7 +17,7 @@ typed-routing = ["axum-macros", "serde", "percent-encoding"]
|
|||||||
cookie = ["cookie-lib"]
|
cookie = ["cookie-lib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum = { path = "../axum", version = "0.4" }
|
axum = { path = "../axum", version = "0.5" }
|
||||||
bytes = "1.1.0"
|
bytes = "1.1.0"
|
||||||
http = "0.2"
|
http = "0.2"
|
||||||
mime = "0.3"
|
mime = "0.3"
|
||||||
@ -28,14 +28,14 @@ tower-layer = "0.3"
|
|||||||
tower-service = "0.3"
|
tower-service = "0.3"
|
||||||
|
|
||||||
# optional dependencies
|
# 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 = { version = "1.0", optional = true }
|
||||||
serde_json = { version = "1.0.71", optional = true }
|
serde_json = { version = "1.0.71", optional = true }
|
||||||
percent-encoding = { version = "2.1", optional = true }
|
percent-encoding = { version = "2.1", optional = true }
|
||||||
cookie-lib = { package = "cookie", version = "0.16", features = ["percent-encode", "signed"], optional = true }
|
cookie-lib = { package = "cookie", version = "0.16", features = ["percent-encode", "signed"], optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
axum = { path = "../axum", version = "0.4", features = ["headers"] }
|
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
||||||
hyper = "0.14"
|
hyper = "0.14"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
tokio = { version = "1.14", features = ["full"] }
|
tokio = { version = "1.14", features = ["full"] }
|
||||||
|
@ -21,7 +21,7 @@ syn = { version = "1.0", features = ["full"] }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
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"
|
rustversion = "1.0"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
tokio = { version = "1.0", features = ["full"] }
|
tokio = { version = "1.0", features = ["full"] }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user