From: Nicolas Luck Date: Thu, 15 Aug 2024 20:40:35 +0000 (+0200) Subject: Relax constraint on version of reqwest dependency (Cargo will pick the latest patch... X-Git-Tag: v0.10.0~116^2~6 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=7092e278d757da6236b48bb8b9b839cb838502b1;p=scryer-prolog.git 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) --- 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 }