Cargo.toml 1.07 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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
repository.workspace = true

[dependencies]
# repo
15
dynamo-kv-router = { workspace = true }
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 }
30
validator = { workspace = true }
31
32
33

# crate-specific
ndarray = "0.16"
34
slotmap = "1"
35
36
37
ndarray-npy = "0.9"
ndarray-interp = "0.5"

38
39
40
[target.'cfg(target_os = "linux")'.dependencies]
tokio-timerfd = "0.2"

41
42
[dev-dependencies]
rstest = "0.18.2"
43
tempfile = { workspace = true }