clankers-cli 0.1.6

Command-line interface for clankeRS
Documentation
[package]
name = "clankers-cli"
description = "Command-line interface for clankeRS"
readme = "README.md"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true

[lib]
name = "clankers_cli"
path = "src/lib.rs"

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

[dependencies]
anyhow.workspace = true
clankers-core.workspace = true
clankers-data.workspace = true
clankers-ml.workspace = true
clankers-tensor.workspace = true
clap.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
walkdir.workspace = true

[dev-dependencies]
tempfile = "3"

[features]
default = ["ml"]
ml = ["clankers-ml/onnxruntime"]