From 7092e278d757da6236b48bb8b9b839cb838502b1 Mon Sep 17 00:00:00 2001 From: Nicolas Luck Date: Thu, 15 Aug 2024 22:40:35 +0200 Subject: [PATCH] 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) --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0ba4e9aa..328aadfd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 } -- 2.54.0