cortiq-cli 0.3.2

Command-line tools for the CMF model format: inspect, convert, run and serve .cmf models.
[package]
name = "cortiq-cli"
version.workspace = true
edition.workspace = true
description = "Command-line tools for the CMF model format: inspect, convert, run and serve .cmf models."
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true
rust-version.workspace = true

[[bin]]
name = "cortiq"
path = "src/main.rs"

[features]
# Forward the cross-platform GPU backend (C1) down into the engine.
gpu = ["cortiq-engine/gpu"]

[dependencies]
cortiq-core = { path = "../cortiq-core", version = "0.3.2" }
cortiq-engine = { path = "../cortiq-engine", version = "0.3.2" }
cortiq-server = { path = "../cortiq-server", version = "0.3.2" }
clap = { workspace = true }
tokio = { workspace = true }
axum = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
anyhow = { workspace = true }
serde_json = { workspace = true }
memmap2 = { workspace = true }
# Minimal blocking HTTP client (rustls) so `cortiq convert` can pull a model
# straight from the Hugging Face hub — keeps the whole convert pipeline in one crate.
ureq = { version = "2", features = ["json", "tls"] }