diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index 91626dde..5f6f1e3e 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning]. # Unreleased -- None. +- **fixed:** Don't depend on axum with default features enabled ([#913]) + +[#913]: https://github.com/tokio-rs/axum/pull/913 # 0.2.1 (03. April, 2022) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index e43e9912..4a33f632 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -18,7 +18,7 @@ cookie = ["cookie-lib"] spa = ["tower-http/fs"] [dependencies] -axum = { path = "../axum", version = "0.5" } +axum = { path = "../axum", version = "0.5", default-features = false } bytes = "1.1.0" http = "0.2" mime = "0.3"