diff options
| author | Luca Casonato <hello@lcas.dev> | 2024-09-18 21:14:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-18 21:14:26 +0200 |
| commit | ab1e391e1d700a68964e899963670e903f498cdf (patch) | |
| tree | 923a469665b841605d81b7f615658a0bb363c35c /Cargo.lock | |
| parent | 5b14c71dafc119d5cf251d6e63cb5f53a661a391 (diff) | |
feat(ext/node): add rootCertificates to node:tls (#25707)
Closes https://github.com/denoland/deno/issues/25604
Signed-off-by: Satya Rohith <me@satyarohith.com>
Co-authored-by: Satya Rohith <me@satyarohith.com>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index d548b2a58..865012911 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1859,6 +1859,7 @@ dependencies = [ "thiserror", "tokio", "url", + "webpki-root-certs", "winapi", "windows-sys 0.52.0", "x25519-dalek", @@ -5974,9 +5975,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" +checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0" [[package]] name = "rustls-tokio-stream" @@ -8116,6 +8117,15 @@ dependencies = [ ] [[package]] +name = "webpki-root-certs" +version = "0.26.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d93b773107ba49bc84dd3b241e019c702d886fd5c457defe2ea8b1123a5dcd" +dependencies = [ + "rustls-pki-types", +] + +[[package]] name = "webpki-roots" version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" |
