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/cache/Cargo.toml | |
| parent | 14904f6a2cac6b288a893add3e129c2668ea3a5a (diff) | |
chore: workspace inheritance (#16343)
Diffstat (limited to 'ext/cache/Cargo.toml')
| -rw-r--r-- | ext/cache/Cargo.toml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml index dd0b8c87c..54302fb37 100644 --- a/ext/cache/Cargo.toml +++ b/ext/cache/Cargo.toml @@ -3,20 +3,20 @@ [package] name = "deno_cache" version = "0.10.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 Cache API for Deno" [lib] path = "lib.rs" [dependencies] -async-trait = "0.1" -deno_core = { version = "0.160.0", path = "../../core" } -rusqlite = { version = "0.28.0", features = ["unlock_notify", "bundled"] } -serde = { version = "1.0.129", features = ["derive"] } -sha2 = "0.10.2" -tokio = { version = "1.19", features = ["full"] } +async-trait.workspace = true +deno_core.workspace = true +rusqlite.workspace = true +serde.workspace = true +sha2.workspace = true +tokio.workspace = true |
