Cargo.toml 1.46 KB
Newer Older
1
2
3
4
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

[package]
Neelay Shah's avatar
Neelay Shah committed
5
name = "dynamo-run"
6
7
8
9
10
11
version.workspace = true
edition.workspace = true
authors.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
12
13
readme.workspace = true
description = "Dynamo Run CLI"
14

15
[features]
16
# Build with `--no-default-features` to disable these defaults
17
default = ["mistralrs"]
18
19
mistralrs = ["dep:dynamo-engine-mistralrs"]

20
21
cuda = ["dynamo-engine-mistralrs/cuda"]
metal = ["dynamo-engine-mistralrs/metal"]
22

23
24
tokio-console = ["dynamo-runtime/tokio-console"]

25
[dependencies]
26
27
28
dynamo-llm = { workspace = true }
dynamo-runtime = { workspace = true }

29
30
dynamo-engine-mistralrs = { path = "../../lib/engines/mistralrs", optional = true }

31
anyhow = { workspace = true }
32
dynamo-async-openai = { workspace = true }
33
34
async-stream = { workspace = true }
async-trait = { workspace = true }
35
either = { workspace = true }
36
futures = { workspace = true }
37
libc = { workspace = true }
38
39
serde = { workspace = true }
serde_json = { workspace = true }
40
tempfile = { workspace = true }
41
42
43
tokio = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
44
tracing-subscriber = { workspace = true }
45
uuid = { workspace = true }
46

47
clap = { version = "4.5", features = ["derive", "env"] }
48
futures-util = { version = "0.3" }
49
regex = "1"
50
51
52
53

[build-dependencies]
vergen-gitcl = "1.0"
anyhow = { workspace = true }