summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorwspsxing <biluohc@qq.com>2022-03-15 11:12:59 +0800
committerGitHub <noreply@github.com>2022-03-14 23:12:59 -0400
commitfe606c52e14aef52c065b506c146942f4304731d (patch)
tree05b2c2af0942bf52a5b78c616f7c4009163b36d8 /ext
parent88d0f01948b68f4a4d87e02a5138e94ac0a6eaea (diff)
fix: upgrade reqwest to 0.11.10 (#13951)
Diffstat (limited to 'ext')
-rw-r--r--ext/fetch/Cargo.toml2
-rw-r--r--ext/tls/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml
index 72d276b14..036ae7872 100644
--- a/ext/fetch/Cargo.toml
+++ b/ext/fetch/Cargo.toml
@@ -20,7 +20,7 @@ deno_core = { version = "0.122.0", path = "../../core" }
deno_tls = { version = "0.27.0", path = "../tls" }
dyn-clone = "1"
http = "0.2.4"
-reqwest = { version = "0.11.7", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
+reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.129", features = ["derive"] }
tokio = { version = "1.10.1", features = ["full"] }
tokio-stream = "0.1.7"
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index ca4197216..1caecf4f6 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -18,7 +18,7 @@ deno_core = { version = "0.122.0", path = "../../core" }
once_cell = "=1.9.0"
rustls = { version = "0.20", features = ["dangerous_configuration"] }
rustls-native-certs = "0.6.1"
-rustls-pemfile = "0.2.1"
+rustls-pemfile = "0.3"
serde = { version = "1.0.129", features = ["derive"] }
webpki = "0.22"
webpki-roots = "0.22"