summaryrefslogtreecommitdiff
path: root/ext/tls
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tls')
-rw-r--r--ext/tls/Cargo.toml1
-rw-r--r--ext/tls/lib.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index 675a979da..34a34f338 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -19,6 +19,7 @@ deno_native_certs = "0.2.0"
once_cell.workspace = true
rustls = { workspace = true, features = ["dangerous_configuration"] }
rustls-pemfile.workspace = true
+rustls-tokio-stream.workspace = true
rustls-webpki.workspace = true
serde.workspace = true
webpki-roots.workspace = true
diff --git a/ext/tls/lib.rs b/ext/tls/lib.rs
index 6ea4a6829..9ed8a5a1f 100644
--- a/ext/tls/lib.rs
+++ b/ext/tls/lib.rs
@@ -3,6 +3,7 @@
pub use deno_native_certs;
pub use rustls;
pub use rustls_pemfile;
+pub use rustls_tokio_stream;
pub use webpki;
pub use webpki_roots;