Cargo.toml 1.33 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
dynamo-runtime = { workspace = true }
17
18
19
20
dynamo-tokens = { workspace = true }

# workspace
anyhow = { workspace = true }
21
22
bytes = { workspace = true }
futures = { workspace = true }
23
24
25
26
27
28
29
dashmap = { workspace = true }
derive_builder = { workspace = true }
derive-getters = { workspace = true }
rand = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
30
tokio-stream = { workspace = true }
31
32
33
tokio-util = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
34
validator = { workspace = true }
35
36
37
38
39

# crate-specific
ndarray = "0.16"
ndarray-npy = "0.9"
ndarray-interp = "0.5"
40
41
zeromq = "0.4.1"
rmp-serde = "1.3"
42

43
[target.'cfg(target_os = "linux")'.dependencies]
44
dynamo-llm = { workspace = true }
45
46
tokio-timerfd = "0.2"

47
48
49
[target.'cfg(not(target_os = "linux"))'.dependencies]
dynamo-llm = { path = "../llm", default-features = false }

50
51
[dev-dependencies]
rstest = "0.18.2"