mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
61b91e10ad
fixes #20454 Current KV queues implementation assumes that `enqueue` and `listenQueue` are called on the same instance of `Deno.Kv`. It's possible that the same Deno process opens multiple KV instances pointing to the same fs path, and in that case `listenQueue` should still get notified of messages enqueued through a different KV instance.
39 lines
906 B
TOML
39 lines
906 B
TOML
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_kv"
|
|
version = "0.28.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Implementation of the Deno database API"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
base64.workspace = true
|
|
chrono.workspace = true
|
|
deno_core.workspace = true
|
|
deno_node.workspace = true
|
|
deno_unsync = "0.1.1"
|
|
hex.workspace = true
|
|
log.workspace = true
|
|
num-bigint.workspace = true
|
|
prost.workspace = true
|
|
rand.workspace = true
|
|
reqwest.workspace = true
|
|
rusqlite.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
termcolor.workspace = true
|
|
tokio.workspace = true
|
|
url.workspace = true
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
|
|
[build-dependencies]
|
|
prost-build.workspace = true
|