2024-01-01 14:58:21 -05:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-03-22 12:13:24 +08:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_kv"
|
2024-02-08 07:39:39 -05:00
|
|
|
version = "0.45.0"
|
2023-03-22 12:13:24 +08:00
|
|
|
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
|
2023-08-22 13:56:00 +08:00
|
|
|
chrono.workspace = true
|
2023-03-22 12:13:24 +08:00
|
|
|
deno_core.workspace = true
|
2023-10-31 12:13:57 +01:00
|
|
|
deno_fetch.workspace = true
|
2023-09-29 11:40:36 -07:00
|
|
|
deno_node.workspace = true
|
2023-10-31 12:13:57 +01:00
|
|
|
deno_tls.workspace = true
|
2023-09-01 20:08:58 +02:00
|
|
|
deno_unsync = "0.1.1"
|
2023-10-31 12:13:57 +01:00
|
|
|
denokv_proto.workspace = true
|
|
|
|
denokv_remote.workspace = true
|
|
|
|
denokv_sqlite.workspace = true
|
2023-03-22 12:13:24 +08:00
|
|
|
hex.workspace = true
|
2023-08-17 18:53:55 +08:00
|
|
|
log.workspace = true
|
2023-03-22 12:13:24 +08:00
|
|
|
num-bigint.workspace = true
|
2023-08-22 13:56:00 +08:00
|
|
|
prost.workspace = true
|
2023-06-13 17:49:57 -07:00
|
|
|
rand.workspace = true
|
2023-08-22 13:56:00 +08:00
|
|
|
reqwest.workspace = true
|
2023-03-22 12:13:24 +08:00
|
|
|
rusqlite.workspace = true
|
|
|
|
serde.workspace = true
|
2023-06-13 17:49:57 -07:00
|
|
|
serde_json.workspace = true
|
2023-09-03 17:47:52 -07:00
|
|
|
termcolor.workspace = true
|
2023-06-13 17:49:57 -07:00
|
|
|
tokio.workspace = true
|
2023-08-22 13:56:00 +08:00
|
|
|
url.workspace = true
|
2023-09-01 18:41:35 +02:00
|
|
|
uuid = { workspace = true, features = ["serde"] }
|
2023-08-22 13:56:00 +08:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
prost-build.workspace = true
|