chore: workspace inheritance (#16343)

This commit is contained in:
Leo Kettmeir 2022-11-22 21:07:35 +01:00 committed by GitHub
parent 14904f6a2c
commit 13e3acf71d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
33 changed files with 535 additions and 547 deletions

20
ext/cache/Cargo.toml vendored
View file

@ -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