-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 910 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 910 Bytes
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
[package]
name = "tinikeyval"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["client", "protocol"]
[workspace.dependencies]
bytes = "1.10"
futures = "0.3"
thiserror = "2.0"
tokio = { version = "1.47", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
tracing = { version = "0.1", features = ["release_max_level_debug"] }
[dependencies]
anyhow = "1.0.100"
byteorder = "1.5.0"
bytes = { workspace = true }
clap = { version = "4.5.48", features = ["derive"] }
crc-fast = "1.5.0"
ctrlc = { version = "3.5.0", features = ["termination"] }
futures = { workspace = true }
fxhash = "0.2.1"
rand = "0.9.2"
tempfile = "3.23.0"
thiserror = { workspace = true }
tinikeyval-protocol = { path = "./protocol" }
tokio = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "json"] }