diff options
| author | Igor Zinkovsky <igor@deno.com> | 2023-06-13 17:49:57 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-13 17:49:57 -0700 |
| commit | fd9d6baea311d9b227b130749647a86838ba2ccc (patch) | |
| tree | f0207f62199d5db463fd7f208d45c9bf09c8db14 /Cargo.lock | |
| parent | d451abfc9154e02f39c08d10c185d1618b2ef6d3 (diff) | |
feat(kv) queue implementation (#19459)
Extend the unstable `Deno.Kv` API to support queues.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index edb0a6e12..ecd31131c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1170,8 +1170,12 @@ dependencies = [ "deno_core", "hex", "num-bigint", + "rand", "rusqlite", "serde", + "serde_json", + "tokio", + "uuid", ] [[package]] |
