diff options
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" |