From 6be671d7d967ed8f1347fe5387e9a7bde04ea895 Mon Sep 17 00:00:00 2001 From: Nicolas Luck Date: Tue, 20 Aug 2024 22:08:11 +0200 Subject: [PATCH] More precise comment mentioning Deno MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Co-authored-by: Bennet Bleßmann --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dda4e74c..d4c3ab7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -89,7 +89,9 @@ libffi = { version = "3.2.0", optional = true } native-tls = { version = "0.2.12", optional = true } # allow dependent crates to pick the patch version that works with other # dependencies, while also updating to latest when possible -reqwest = { version = "0.11.*", optional = true } +# the version requirement of reqwest is kept low for compatibility with old deno versions +# that pin request to 0.11.20 +reqwest = { version = "0.11.0", 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