2023-03-22 00:13:24 -04:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_kv"
|
2023-09-01 14:08:58 -04:00
|
|
|
version = "0.26.0"
|
2023-03-22 00:13:24 -04: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 01:56:00 -04:00
|
|
|
chrono.workspace = true
|
2023-03-22 00:13:24 -04:00
|
|
|
deno_core.workspace = true
|
2023-09-01 14:08:58 -04:00
|
|
|
deno_unsync = "0.1.1"
|
2023-03-22 00:13:24 -04:00
|
|
|
hex.workspace = true
|
2023-08-17 06:53:55 -04:00
|
|
|
log.workspace = true
|
2023-03-22 00:13:24 -04:00
|
|
|
num-bigint.workspace = true
|
2023-08-22 01:56:00 -04:00
|
|
|
prost.workspace = true
|
2023-06-13 20:49:57 -04:00
|
|
|
rand.workspace = true
|
2023-08-22 01:56:00 -04:00
|
|
|
reqwest.workspace = true
|
2023-03-22 00:13:24 -04:00
|
|
|
rusqlite.workspace = true
|
|
|
|
serde.workspace = true
|
2023-06-13 20:49:57 -04:00
|
|
|
serde_json.workspace = true
|
2023-09-03 20:47:52 -04:00
|
|
|
termcolor.workspace = true
|
2023-06-13 20:49:57 -04:00
|
|
|
tokio.workspace = true
|
2023-08-22 01:56:00 -04:00
|
|
|
url.workspace = true
|
2023-09-01 12:41:35 -04:00
|
|
|
uuid = { workspace = true, features = ["serde"] }
|
2023-08-22 01:56:00 -04:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
prost-build.workspace = true
|