-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (47 loc) · 1.78 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (47 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[workspace]
members = ["denokv", "proto", "remote", "sqlite", "timemachine"]
resolver = "2"
[workspace.package]
license = "MIT"
repository = "https://github.com/denoland/denokv"
authors = ["the Deno authors"]
edition = "2021"
[workspace.dependencies]
denokv_proto = { version = "0.14.0", path = "./proto" }
denokv_sqlite = { version = "0.14.0", path = "./sqlite" }
denokv_remote = { version = "0.14.0", path = "./remote" }
denokv_timemachine = { version = "0.14.0", path = "./timemachine" }
anyhow = "1"
async-stream = "0.3"
async-trait = "0.1"
aws-config = { version = "1.8", default-features = false, features = ["behavior-version-latest", "rt-tokio", "sso", "credentials-process"] }
aws-sdk-s3 = { version = "1.135", default-features = false, features = ["rt-tokio"] }
aws-smithy-http-client = { version = "1.1.13", features = ["rustls-ring"] }
aws-smithy-runtime-api = "1"
axum = { version = "0.8", features = ["macros", "http2"] }
bytes = "1"
chrono = { version = "0.4", default-features = false, features = ["std", "serde"] }
clap = { version = "4", features = ["derive", "env"] }
constant_time_eq = "0.5"
env_logger = "0.11"
futures = "0.3.28"
hex = "0.4"
http = "1"
log = "0.4.20"
num-bigint = "0.4"
prost = "0.14"
prost-build = "0.14"
rand = "0.8.5"
reqwest = { version = "0.13.4", default-features = false, features = ["json", "stream"] }
rusqlite = { version = "0.40.0", features = ["fallible_uint"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.107"
tempfile = "3"
thiserror = "2"
deno_error = { version = "0.7.0", features = ["url", "serde_json", "serde"] }
tokio = { version = "1.33.0", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["full"] }
url = "2"
uuid = { version = "1.4.1", features = ["v4", "serde"] }
v8_valueserializer = "0.1.1"