diff options
| author | Satya Rohith <me@satyarohith.com> | 2022-09-28 17:41:12 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-28 17:41:12 +0530 |
| commit | b312279e58e51520a38e51cca317a09cdadd7cb4 (patch) | |
| tree | a0c6f432042ba25b569c151bbe59f1e721788d0c /ext/cache/Cargo.toml | |
| parent | 1156f726a92d3d3985e591327c7526cd3e2b0473 (diff) | |
feat: implement Web Cache API (#15829)
Diffstat (limited to 'ext/cache/Cargo.toml')
| -rw-r--r-- | ext/cache/Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml new file mode 100644 index 000000000..6f6808fe7 --- /dev/null +++ b/ext/cache/Cargo.toml @@ -0,0 +1,22 @@ +# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. + +[package] +name = "deno_cache" +version = "0.1.0" +authors = ["the Deno authors"] +edition = "2021" +license = "MIT" +readme = "README.md" +repository = "https://github.com/denoland/deno" +description = "Implementation of Cache API for Deno" + +[lib] +path = "lib.rs" + +[dependencies] +async-trait = "0.1" +deno_core = { version = "0.152.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"] } |
