summaryrefslogtreecommitdiff
path: root/ext/url
diff options
context:
space:
mode:
Diffstat (limited to 'ext/url')
-rw-r--r--ext/url/Cargo.toml18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml
index eaa092900..d27b0cb30 100644
--- a/ext/url/Cargo.toml
+++ b/ext/url/Cargo.toml
@@ -3,25 +3,25 @@
[package]
name = "deno_url"
version = "0.78.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 = "URL API implementation for Deno"
[lib]
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.160.0", path = "../../core" }
-serde = { version = "1.0.136", features = ["derive"] }
-serde_repr = "0.1.7"
+deno_core.workspace = true
+serde.workspace = true
+serde_repr.workspace = true
urlpattern = "0.2.0"
[dev-dependencies]
-deno_bench_util = { version = "0.72.0", path = "../../bench_util" }
-deno_webidl = { version = "0.78.0", path = "../webidl" }
+deno_bench_util.workspace = true
+deno_webidl.workspace = true
[[bench]]
name = "url_ops"