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

@ -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 }