25 lines
603 B
TOML
25 lines
603 B
TOML
[package]
|
|
name = "headroom-cli"
|
|
description = "Headroom CLI binary."
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
|
|
[[bin]]
|
|
name = "headroom"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
headroom-client = { workspace = true }
|
|
headroom-core = { workspace = true }
|
|
headroom-ipc = { workspace = true }
|
|
|
|
clap = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|