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-07-11 20:46:42 +02:00
|
|
|
version = "0.68.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
|
2024-07-02 01:09:47 +01:00
|
|
|
bytes.workspace = true
|
2024-05-23 08:59:11 -03:00
|
|
|
chrono = { workspace = true, features = ["now"] }
|
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
|
2024-06-06 23:37:53 -04:00
|
|
|
deno_permissions.workspace = true
|
2023-10-31 12:13:57 +01:00
|
|
|
deno_tls.workspace = true
|
|
|
|
denokv_proto.workspace = true
|
|
|
|
denokv_remote.workspace = true
|
|
|
|
denokv_sqlite.workspace = true
|
2024-03-07 10:00:43 -07:00
|
|
|
faster-hex.workspace = true
|
2024-07-02 01:09:47 +01:00
|
|
|
http.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-03-22 12:13:24 +08:00
|
|
|
rusqlite.workspace = true
|
|
|
|
serde.workspace = true
|
2023-08-22 13:56:00 +08:00
|
|
|
url.workspace = true
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
prost-build.workspace = true
|