Cargo.toml 1.19 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
dynamo-tokens = { workspace = true }
19
kvbm-logical = { workspace = true }
20
21
22
23
24
25

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

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

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

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