diff options
| author | Heyang Zhou <zhy20000919@hotmail.com> | 2023-03-22 12:13:24 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-22 12:13:24 +0800 |
| commit | 92ebf4afe5d55135b3ba39616bcb77106c07c597 (patch) | |
| tree | f79fe65811c7449f5b50c093852eceaad228d39f /runtime/Cargo.toml | |
| parent | 8bcffff9dc517aa93dea2816b2a854f65d24eccc (diff) | |
feat(ext/kv): key-value store (#18232)
This commit adds unstable "Deno.openKv()" API that allows to open
a key-value database at a specified path.
---------
Co-authored-by: Luca Casonato <hello@lcas.dev>
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'runtime/Cargo.toml')
| -rw-r--r-- | runtime/Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index e3a98e9af..c729e70f6 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -47,6 +47,7 @@ deno_http.workspace = true deno_io.workspace = true deno_net.workspace = true deno_node.workspace = true +deno_kv.workspace = true deno_tls.workspace = true deno_url.workspace = true deno_web.workspace = true @@ -71,6 +72,7 @@ deno_flash.workspace = true deno_fs.workspace = true deno_http.workspace = true deno_io.workspace = true +deno_kv.workspace = true deno_napi.workspace = true deno_net.workspace = true deno_node.workspace = true |
