Cargo.toml 1.17 KB
Newer Older
Ryan Olson's avatar
Ryan Olson committed
1
2
3
4
5
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

[package]
name = "kvbm-logical"
Ryan Olson's avatar
Ryan Olson committed
6
version = "1.0.0"
Ryan Olson's avatar
Ryan Olson committed
7
8
9
10
11
12
13
14
15
16
17
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
dynamo-tokens = { workspace = true }

anyhow = { workspace = true }
async-stream = "0.3"
bytes = "1.10"
18
bincode = { version = "2.0.1", features = ["serde", "derive"] }
Ryan Olson's avatar
Ryan Olson committed
19
20
derive_builder = { workspace = true }
futures = { workspace = true }
21
indexmap = { workspace = true }
Ryan Olson's avatar
Ryan Olson committed
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
lru = "0.16"
parking_lot = { workspace = true }
prometheus = { workspace = true }
rmp-serde = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true, features = ["sync"] }
tracing = { workspace = true }
xxhash-rust = { workspace = true }

[features]
testing = []

[dev-dependencies]
proptest = "1.5.0"
39
40
rand = { workspace = true }
rand_chacha = "0.9"
Ryan Olson's avatar
Ryan Olson committed
41
42
43
rstest = "0.26"
serde_json = { workspace = true }
tokio = { workspace = true, features = ["full"] }
44
tracing-subscriber = { workspace = true }