diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index 118542f6..04ab6fb5 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased -- None. +- **fix:** Depend on the right versions of axum and axum-macros. # 0.1.3 (22. February, 2022) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 1f60e71b..2c4820da 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -15,7 +15,7 @@ erased-json = ["serde_json", "serde"] typed-routing = ["axum-macros", "serde", "percent-encoding"] [dependencies] -axum = { path = "../axum", version = "0.4" } +axum = { path = "../axum", version = "0.4.6" } bytes = "1.1.0" http = "0.2" mime = "0.3" @@ -26,7 +26,7 @@ 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.1.1", optional = true } serde = { version = "1.0", optional = true } serde_json = { version = "1.0.71", optional = true } percent-encoding = { version = "2.1", optional = true }