diff options
Diffstat (limited to 'ext/net')
-rw-r--r-- | ext/net/Cargo.toml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index 01997a064..31821dd1d 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -3,22 +3,22 @@ [package] name = "deno_net" version = "0.70.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 = "Networking for Deno" [lib] path = "lib.rs" [dependencies] -deno_core = { version = "0.160.0", path = "../../core" } -deno_tls = { version = "0.65.0", path = "../tls" } -log = "0.4.16" -serde = { version = "1.0.136", features = ["derive"] } -socket2 = "0.4.4" -tokio = { version = "1.21", features = ["full"] } +deno_core.workspace = true +deno_tls.workspace = true +log.workspace = true +serde.workspace = true +socket2.workspace = true +tokio.workspace = true trust-dns-proto = "0.22" trust-dns-resolver = { version = "0.22", features = ["tokio-runtime", "serde-config"] } |