# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 [package] name = "dynamo-run" version.workspace = true edition.workspace = true authors.workspace = true homepage.workspace = true license.workspace = true repository.workspace = true readme.workspace = true description = "Dynamo Run CLI" [features] # Build with `--no-default-features` to disable these defaults default = ["mistralrs", "llamacpp"] mistralrs = ["dep:dynamo-engine-mistralrs"] llamacpp = ["dep:dynamo-engine-llamacpp"] cuda = ["dynamo-engine-llamacpp/cuda", "dynamo-engine-mistralrs/cuda"] metal = ["dynamo-engine-llamacpp/metal", "dynamo-engine-mistralrs/metal"] vulkan = ["dynamo-engine-llamacpp/vulkan"] openmp = ["dynamo-engine-llamacpp/openmp"] [dependencies] dynamo-llm = { workspace = true } dynamo-runtime = { workspace = true } dynamo-engine-llamacpp = { path = "../../lib/engines/llamacpp", optional = true } dynamo-engine-mistralrs = { path = "../../lib/engines/mistralrs", optional = true } anyhow = { workspace = true } async-stream = { workspace = true } async-trait = { workspace = true } futures = { workspace = true } humantime = { workspace = true } libc = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } tempfile = { workspace = true } tokio = { workspace = true } tokio-util = { workspace = true } tracing = { workspace = true } tracing-subscriber = { workspace = true } uuid = { workspace = true } async-openai = { workspace = true } clap = { version = "4.5", features = ["derive", "env"] } dialoguer = { version = "0.11", default-features = false, features = ["editor", "history"] } futures-util = { version = "0.3" } regex = "1" [build-dependencies] vergen-gitcl = "1.0" anyhow = { workspace = true }