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/lib.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/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index dab9cc7bd..af14e3e85 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -407,6 +407,7 @@ deno_core::extension!(deno_node, ops::ipc::op_node_ipc_unref, ops::process::op_node_process_kill, ops::process::op_process_abort, + ops::tls::op_get_root_certificates, ], esm_entry_point = "ext:deno_node/02_init.js", esm = [ |