0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-08 07:16:56 -05:00
denoland-deno/ext/cache/Cargo.toml

36 lines
795 B
TOML
Raw Normal View History

2025-01-01 04:12:39 +09:00
# Copyright 2018-2025 the Deno authors. MIT license.
2022-09-28 17:41:12 +05:30
[package]
name = "deno_cache"
version = "0.117.0"
2022-11-22 21:07:35 +01:00
authors.workspace = true
edition.workspace = true
license.workspace = true
2022-09-28 17:41:12 +05:30
readme = "README.md"
2022-11-22 21:07:35 +01:00
repository.workspace = true
2022-09-28 17:41:12 +05:30
description = "Implementation of Cache API for Deno"
[lib]
path = "lib.rs"
[dependencies]
2025-01-11 00:00:18 +01:00
anyhow.workspace = true
async-stream.workspace = true
2022-11-22 21:07:35 +01:00
async-trait.workspace = true
2025-01-11 00:00:18 +01:00
base64.workspace = true
bytes.workspace = true
chrono.workspace = true
2022-11-22 21:07:35 +01:00
deno_core.workspace = true
deno_error.workspace = true
2025-01-11 00:00:18 +01:00
futures.workspace = true
http.workspace = true
hyper.workspace = true
reqwest.workspace = true
2022-11-22 21:07:35 +01:00
rusqlite.workspace = true
serde.workspace = true
sha2.workspace = true
2025-01-11 00:00:18 +01:00
slab.workspace = true
thiserror.workspace = true
2022-11-22 21:07:35 +01:00
tokio.workspace = true
2025-01-11 00:00:18 +01:00
tokio-util.workspace = true