mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 19:08:15 +00:00
chore: workspace inheritance (#16343)
This commit is contained in:
parent
14904f6a2c
commit
13e3acf71d
33 changed files with 535 additions and 547 deletions
20
ext/cache/Cargo.toml
vendored
20
ext/cache/Cargo.toml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue