From 97b85b41a467c3f1af4913187e3510ca04947d42 Mon Sep 17 00:00:00 2001 From: Patrick Fernie Date: Sat, 17 Jun 2023 11:50:30 -0400 Subject: [PATCH] ci: change `reqwest` dependency specification to `^0.11` instead of specific version --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f00b381..e60587f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,9 +18,11 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] bytes = "1.0.1" -reqwest = { version = "0.11.3", default-features = false, features = ["cookies"] } cookie_store = "^0.20" +reqwest = { version = "^0.11", default-features = false, features = ["cookies"] } url = "2.2.2" [dev-dependencies] tokio-test = "0.4.1" +# if `no_run` directive is removed from `lib.rs` doctest, enable the TLS feature in `reqwest` +#reqwest = { version = "^0.11", default-features = false, features = ["cookies", "default-tls"] }