From 92ebf4afe5d55135b3ba39616bcb77106c07c597 Mon Sep 17 00:00:00 2001 From: Heyang Zhou Date: Wed, 22 Mar 2023 12:13:24 +0800 Subject: feat(ext/kv): key-value store (#18232) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds unstable "Deno.openKv()" API that allows to open a key-value database at a specified path. --------- Co-authored-by: Luca Casonato Co-authored-by: Bartek IwaƄczuk --- runtime/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'runtime/Cargo.toml') 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 -- cgit v1.2.3