summaryrefslogtreecommitdiff
path: root/extensions/tls
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/tls')
-rw-r--r--extensions/tls/Cargo.toml2
-rw-r--r--extensions/tls/README.md4
2 files changed, 5 insertions, 1 deletions
diff --git a/extensions/tls/Cargo.toml b/extensions/tls/Cargo.toml
index e75d0bbfe..7a723e73b 100644
--- a/extensions/tls/Cargo.toml
+++ b/extensions/tls/Cargo.toml
@@ -14,7 +14,7 @@ description = "TLS for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.95.0", path = "../../core" }
+deno_core = { version = "0.96.0", path = "../../core" }
lazy_static = "1.4.0"
reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
rustls = { version = "0.19.1", features = ["dangerous_configuration"] }
diff --git a/extensions/tls/README.md b/extensions/tls/README.md
new file mode 100644
index 000000000..c3a8eb839
--- /dev/null
+++ b/extensions/tls/README.md
@@ -0,0 +1,4 @@
+# deno_tls
+
+This crate implements common utilities for TLS handling in other Deno
+extensions.