mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
d9db0b35e0
This is the release commit being forwarded back to main for 2.1.9 Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
38 lines
878 B
TOML
38 lines
878 B
TOML
# Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
[package]
|
|
name = "deno_cache"
|
|
version = "0.121.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Implementation of Cache API for Deno"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-stream.workspace = true
|
|
async-trait.workspace = true
|
|
base64.workspace = true
|
|
bytes.workspace = true
|
|
chrono.workspace = true
|
|
deno_core.workspace = true
|
|
deno_error.workspace = true
|
|
futures.workspace = true
|
|
http.workspace = true
|
|
http-body.workspace = true
|
|
http-body-util.workspace = true
|
|
hyper.workspace = true
|
|
hyper-util.workspace = true
|
|
log.workspace = true
|
|
rusqlite.workspace = true
|
|
serde.workspace = true
|
|
sha2.workspace = true
|
|
slab.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
tokio-util.workspace = true
|