diff options
| author | Luca Casonato <hello@lcas.dev> | 2023-12-05 14:21:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-05 21:21:46 +0800 |
| commit | 74e39a927c63e789fec1c8f1817812920079229d (patch) | |
| tree | fa38e32c700865b25710f491d551086733d58d5f /Cargo.toml | |
| parent | a24d3e8763bc48b69936db9231efb76766914303 (diff) | |
feat(unstable): kv.watch() (#21147)
This commit adds support for a new `kv.watch()` method that allows
watching for changes to a key-value pair. This is useful for cases
where you want to be notified when a key-value pair changes, but
don't want to have to poll for changes.
---------
Co-authored-by: losfair <zhy20000919@hotmail.com>
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml index d22cf5919..743cfe78f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,10 +49,10 @@ test_util = { path = "./test_util" } deno_lockfile = "0.17.2" deno_media_type = { version = "0.1.1", features = ["module_specifier"] } -denokv_proto = "0.4.0" +denokv_proto = "0.5.0" # denokv_sqlite brings in bundled sqlite if we don't disable the default features -denokv_sqlite = { default-features = false, version = "0.4.0" } -denokv_remote = "0.4.0" +denokv_sqlite = { default-features = false, version = "0.5.0" } +denokv_remote = "0.5.0" # exts deno_broadcast_channel = { version = "0.120.0", path = "./ext/broadcast_channel" } |
