Skip to content

Commit

Permalink
axum-extra: Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpdrsn committed Mar 31, 2022
1 parent f69d2db commit 5d0a7b4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions axum-extra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
8 changes: 4 additions & 4 deletions axum-extra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand All @@ -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"
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion axum-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 5d0a7b4

Please sign in to comment.