summaryrefslogtreecommitdiff
path: root/ext/tls
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-11-22 21:07:35 +0100
committerGitHub <noreply@github.com>2022-11-22 21:07:35 +0100
commit13e3acf71dd8443d8d158087d8c0a0cb72167f9a (patch)
tree7455c069643f10bc9de5d6c8993defddeda378fd /ext/tls
parent14904f6a2cac6b288a893add3e129c2668ea3a5a (diff)
chore: workspace inheritance (#16343)
Diffstat (limited to 'ext/tls')
-rw-r--r--ext/tls/Cargo.toml18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index 1071a89a4..599d056f6 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -3,22 +3,22 @@
[package]
name = "deno_tls"
version = "0.65.0"
-authors = ["the Deno authors"]
-edition = "2021"
-license = "MIT"
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
readme = "README.md"
-repository = "https://github.com/denoland/deno"
+repository.workspace = true
description = "TLS for Deno"
[lib]
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.160.0", path = "../../core" }
-once_cell = "1.10.0"
-rustls = { version = "0.20.5", features = ["dangerous_configuration"] }
+deno_core.workspace = true
+once_cell.workspace = true
+rustls = { workspace = true, features = ["dangerous_configuration"] }
rustls-native-certs = "0.6.2"
-rustls-pemfile = "1.0.0"
-serde = { version = "1.0.136", features = ["derive"] }
+rustls-pemfile.workspace = true
+serde.workspace = true
webpki = "0.22"
webpki-roots = "0.22"