diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-11-22 21:07:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 21:07:35 +0100 |
commit | 13e3acf71dd8443d8d158087d8c0a0cb72167f9a (patch) | |
tree | 7455c069643f10bc9de5d6c8993defddeda378fd /ext/web | |
parent | 14904f6a2cac6b288a893add3e129c2668ea3a5a (diff) |
chore: workspace inheritance (#16343)
Diffstat (limited to 'ext/web')
-rw-r--r-- | ext/web/Cargo.toml | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml index 3bb02df6b..56e8bcbaf 100644 --- a/ext/web/Cargo.toml +++ b/ext/web/Cargo.toml @@ -3,30 +3,30 @@ [package] name = "deno_web" version = "0.109.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 = "Collection of Web APIs" [lib] path = "lib.rs" [dependencies] -async-trait = "0.1.51" +async-trait.workspace = true base64-simd = "0.7" -deno_core = { version = "0.160.0", path = "../../core" } -encoding_rs = "0.8.31" -flate2 = "1" -serde = "1.0.136" -tokio = { version = "1.21", features = ["full"] } -uuid = { version = "1.0.0", features = ["v4", "serde"] } +deno_core.workspace = true +encoding_rs.workspace = true +flate2.workspace = true +serde = "1.0.144" +tokio.workspace = true +uuid = { workspace = true, features = ["serde"] } [dev-dependencies] -deno_bench_util = { version = "0.72.0", path = "../../bench_util" } -deno_url = { version = "0.78.0", path = "../url" } -deno_webidl = { version = "0.78.0", path = "../webidl" } +deno_bench_util.workspace = true +deno_url.workspace = true +deno_webidl.workspace = true [[bench]] name = "encoding" |