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 /ext/node/ops/mod.rs | |
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 'ext/node/ops/mod.rs')
-rw-r--r-- | ext/node/ops/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/ops/mod.rs b/ext/node/ops/mod.rs index d11cc7461..b562261f3 100644 --- a/ext/node/ops/mod.rs +++ b/ext/node/ops/mod.rs @@ -11,6 +11,7 @@ pub mod ipc; pub mod os; pub mod process; pub mod require; +pub mod tls; pub mod util; pub mod v8; pub mod vm; |