Cargo.toml 1.13 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
25
26
27
28
29
30
31
dynamo-tokens = { workspace = true }

# workspace
anyhow = { workspace = true }
dashmap = { workspace = true }
derive_builder = { workspace = true }
derive-getters = { workspace = true }
rand = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
32
validator = { workspace = true }
33
34
35

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

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

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