summaryrefslogtreecommitdiff
path: root/ext/tls/Cargo.toml
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-08-25 15:40:25 -0600
committerGitHub <noreply@github.com>2023-08-25 23:40:25 +0200
commit8bb4e10881730576bbb82e54ede1ebf5931194c3 (patch)
tree39e093f85237557be498efad55bfc3af922c274a /ext/tls/Cargo.toml
parent907d9bb4d720a7b01bffb098c72c789665f2415b (diff)
fix(ext/tls): upgrade webpki version (#20285)
This removes a webpki version that was showing up as vulnerable to https://github.com/briansmith/webpki/issues/69. Needed to upgrade `reqwest` as part of this.
Diffstat (limited to 'ext/tls/Cargo.toml')
-rw-r--r--ext/tls/Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index 4dfc045f6..a06af68ac 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -17,8 +17,8 @@ path = "lib.rs"
deno_core.workspace = true
once_cell.workspace = true
rustls = { workspace = true, features = ["dangerous_configuration"] }
-rustls-native-certs = "0.6.2"
+rustls-native-certs.workspace = true
rustls-pemfile.workspace = true
+rustls-webpki.workspace = true
serde.workspace = true
-webpki = "0.22"
-webpki-roots = "0.22"
+webpki-roots.workspace = true