Relax lower bound on http dependency

Originally, I just used the current version when adding the dependency,
but I see no reason to forbid earlier compatible versions.
This commit is contained in:
Joscha 2025-01-01 22:36:59 +01:00
parent ec7a461758
commit 59b81d637b
2 changed files with 2 additions and 1 deletions

View file

@ -20,6 +20,7 @@ A dependency update to an incompatible version is considered a breaking change.
### Changed ### Changed
- **(breaking)** Updated `axum-core` dependency to `0.5.0` - **(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 ## v0.1.3 - 2024-12-21

View file

@ -14,7 +14,7 @@ axum = ["dep:axum-core", "dep:http"]
[dependencies] [dependencies]
axum-core = { version = "0.5.0", optional = true } axum-core = { version = "0.5.0", optional = true }
http = { version = "1.1.0", optional = true } http = { version = "1.0.0", optional = true }
[lints] [lints]
rust.unsafe_code = { level = "forbid", priority = 1 } rust.unsafe_code = { level = "forbid", priority = 1 }