Cargo.toml 1.59 KB
Newer Older
Yan Ru Pei's avatar
Yan Ru Pei committed
1
2
3
4
5
6
7
8
9
10
11
12
13
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

[package]
name = "dynamo-bench"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Lightweight HTTP benchmarks for Dynamo endpoints"

14
[[bench]]
Yan Ru Pei's avatar
Yan Ru Pei committed
15
name = "multiturn_bench"
16
17
18
19
20
21
22
path = "multiturn_bench.rs"
harness = false

[[bench]]
name = "offline_replay_bench"
path = "offline_replay_bench.rs"
harness = false
Yan Ru Pei's avatar
Yan Ru Pei committed
23

24
25
26
27
28
29
30
31
32
33
[[bench]]
name = "mooncake_bench"
path = "kv_router/mooncake_bench.rs"
harness = false

[[bench]]
name = "active_sequences_bench"
path = "kv_router/active_sequences_bench.rs"
harness = false

Yan Ru Pei's avatar
Yan Ru Pei committed
34
35
36
[dependencies]
anyhow = { workspace = true }
clap = { version = "4.5", features = ["derive"] }
37
futures-util = { workspace = true }
Yan Ru Pei's avatar
Yan Ru Pei committed
38
39
40
41
42
43
indicatif = "0.18"
rand = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
44
dynamo-mocker = { workspace = true }
45
46

[dev-dependencies]
47
dynamo-kv-router = { workspace = true, features = ["bench", "metrics", "shard-metrics"] }
48
49
50
51
52
dynamo-tokens = { workspace = true }
minstant = "0.1.7"
plotters = { version = "0.3", default-features = false, features = ["svg_backend", "line_series", "point_series", "full_palette"] }
tokio = { workspace = true, features = ["rt", "macros", "time"] }
tokio-util = { workspace = true }
53
tracing = { workspace = true }
54
tracing-subscriber = { workspace = true }
55
tempfile = { workspace = true }
56
uuid = { workspace = true }