summaryrefslogtreecommitdiff
path: root/ext/tls/Cargo.toml
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2023-10-31 04:55:46 -0700
committerGitHub <noreply@github.com>2023-10-31 12:55:46 +0100
commitba6bd444b60606f96dd7b2edb1b14aeae22b5016 (patch)
treee34ca91e46e72bc52deb250904c6402e6372dc8a /ext/tls/Cargo.toml
parentf62e22a6998bc4d0e2b2fc3df8d6a81aac264e7a (diff)
perf: use deno_native_certs crate (#18072)
Fixes #18071 Replace `rustls_native_certs` which links to Security framework. https://github.com/denoland/deno_native_certs uses dlopen to lazy load when needed.
Diffstat (limited to 'ext/tls/Cargo.toml')
-rw-r--r--ext/tls/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index 6d56dfd49..8184e97a3 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -15,9 +15,9 @@ path = "lib.rs"
[dependencies]
deno_core.workspace = true
+deno_native_certs = "0.1.1"
once_cell.workspace = true
rustls = { workspace = true, features = ["dangerous_configuration"] }
-rustls-native-certs.workspace = true
rustls-pemfile.workspace = true
rustls-webpki.workspace = true
serde.workspace = true