Files
Linux-Hello/linux-hello-cli/Cargo.toml

25 lines
582 B
TOML

[package]
name = "linux-hello-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Linux Hello command-line interface"
[[bin]]
name = "linux-hello"
path = "src/main.rs"
[dependencies]
linux-hello-common = { path = "../linux-hello-common" }
linux-hello-daemon = { path = "../linux-hello-daemon" }
thiserror.workspace = true
serde.workspace = true
serde_json.workspace = true
toml.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
tokio.workspace = true
clap.workspace = true
image.workspace = true
libc = "0.2"