summaryrefslogtreecommitdiff
path: root/ext/url
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/url
parent14904f6a2cac6b288a893add3e129c2668ea3a5a (diff)
chore: workspace inheritance (#16343)
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"