mirror of
https://github.com/denoland/deno.git
synced 2025-10-01 22:51:14 +00:00
![]() This commits moves all `.d.ts` files from `ext/*` to `cli/tsc/dts`. Due to TSC snapshot removal, `cargo publish` is now erroring out, unable to find the declaration files. These files were moved to "cli/tsc/dts", because it's much easier than keeping them in extension directories, while still providing them compressed or uncompressed depending on the build type. |
||
---|---|---|
.. | ||
01_cache.js | ||
Cargo.toml | ||
lib.rs | ||
lsc_shard.rs | ||
lscache.rs | ||
README.md | ||
sqlite.rs |
deno_cache
This crate implements the Cache API for Deno.
The following APIs are implemented:
CacheStorage::open()
CacheStorage::has()
CacheStorage::delete()
Cache::match()
Cache::put()
Cache::delete()
Cache APIs don't support the query options yet.