summaryrefslogtreecommitdiff
path: root/ext/webstorage/Cargo.toml
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/webstorage/Cargo.toml
parent14904f6a2cac6b288a893add3e129c2668ea3a5a (diff)
chore: workspace inheritance (#16343)
Diffstat (limited to 'ext/webstorage/Cargo.toml')
-rw-r--r--ext/webstorage/Cargo.toml16
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml
index 768485ce6..de3a3bc85 100644
--- a/ext/webstorage/Cargo.toml
+++ b/ext/webstorage/Cargo.toml
@@ -3,18 +3,18 @@
[package]
name = "deno_webstorage"
version = "0.73.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 = "Implementation of WebStorage API for Deno"
[lib]
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.160.0", path = "../../core" }
-deno_web = { version = "0.109.0", path = "../web" }
-rusqlite = { version = "0.28.0", features = ["unlock_notify", "bundled"] }
-serde = { version = "1.0.136", features = ["derive"] }
+deno_core.workspace = true
+deno_web.workspace = true
+rusqlite.workspace = true
+serde.workspace = true