mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-27 09:23:09 +00:00
17 lines
356 B
TOML
17 lines
356 B
TOML
|
|
[package]
|
||
|
|
name = "weft-appd"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "weft-appd"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
anyhow = "1.0"
|
||
|
|
sd-notify = "0.4"
|
||
|
|
tokio = { version = "1", features = ["rt", "macros", "signal"] }
|
||
|
|
tracing = "0.1"
|
||
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|