24 lines
633 B
TOML
24 lines
633 B
TOML
|
|
[package]
|
||
|
|
name = "cstat-cli"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
description = "Command-line entry point for the cstat extractor."
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "cstat"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
cstat-schema = { path = "../cstat-schema" }
|
||
|
|
cstat-orchestrate = { path = "../cstat-orchestrate" }
|
||
|
|
cstat-extract-stable = { path = "../cstat-extract-stable" }
|
||
|
|
clap = { workspace = true }
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
cstat-schema = { path = "../cstat-schema" }
|
||
|
|
cstat-orchestrate = { path = "../cstat-orchestrate" }
|
||
|
|
serde_json = { workspace = true }
|