Cargo.toml 1.15 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

[package]
name = "dynamo-mocker"
description = "Mock LLM scheduler and KV manager for testing"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
11
homepage.workspace = true
12
repository.workspace = true
13
readme = "README.md"
14
15
16

[dependencies]
# repo
17
dynamo-kv-router = { workspace = true }
18
19
20
21
22
23
24
dynamo-tokens = { workspace = true }

# workspace
anyhow = { workspace = true }
dashmap = { workspace = true }
derive_builder = { workspace = true }
derive-getters = { workspace = true }
25
indicatif = "0.18"
26
27
28
29
30
31
32
rand = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
33
validator = { workspace = true }
34
35
36

# crate-specific
ndarray = "0.16"
37
slotmap = "1"
38
39
ndarray-npy = "0.9"
ndarray-interp = "0.5"
40
rustc-hash = "2"
41

42
43
44
[target.'cfg(target_os = "linux")'.dependencies]
tokio-timerfd = "0.2"

45
46
[dev-dependencies]
rstest = "0.18.2"
47
tempfile = { workspace = true }