Relax constraint on version of reqwest dependency (Cargo will pick the latest patch that's possible, but not fail if another dep. has it pinned to something below patch 27)

This commit is contained in:
Nicolas Luck
2024-08-15 22:40:35 +02:00
parent bacfed8983
commit 7092e278d7

View File

@@ -12,7 +12,7 @@ categories = ["command-line-utilities"]
build = "build/main.rs"
rust-version = "1.77"
[lib]
[lib]s
crate-type = ["cdylib", "rlib"]
[features]
@@ -87,7 +87,7 @@ ctrlc = { version = "3.4.4", optional = true }
hostname = { version = "0.4.0", optional = true }
libffi = { version = "3.2.0", optional = true }
native-tls = { version = "0.2.12", optional = true }
reqwest = { version = "0.11.27", optional = true }
reqwest = { version = "0.11.*", optional = true }
rustyline = { version = "14.0.0", optional = true }
tokio = { version = "1.39.2", features = ["full"] }
warp = { version = "0.3.7", features = ["tls"], optional = true }