mirror of
https://github.com/denoland/deno.git
synced 2025-02-18 19:33:00 -05:00
![Bartek Iwańczuk](/assets/img/avatar_default.png)
This commit adds support for lscache backend for the Web cache API. The cache cab be configured using `DENO_CACHE_LSC_ENDPOINT` env var.
38 lines
878 B
TOML
38 lines
878 B
TOML
# Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
[package]
|
|
name = "deno_cache"
|
|
version = "0.119.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
|