diff --git a/CHANGELOG.md b/CHANGELOG.md index 44c909b..acb3fed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ A dependency update to an incompatible version is considered a breaking change. ### Changed - **(breaking)** Updated `axum-core` dependency to `0.5.0` +- Relaxed lower bound on `http` dependency to `1.0.0` ## v0.1.3 - 2024-12-21 diff --git a/Cargo.toml b/Cargo.toml index 4614621..20a72d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ axum = ["dep:axum-core", "dep:http"] [dependencies] axum-core = { version = "0.5.0", optional = true } -http = { version = "1.1.0", optional = true } +http = { version = "1.0.0", optional = true } [lints] rust.unsafe_code = { level = "forbid", priority = 1 }