24 lines
628 B
TOML
24 lines
628 B
TOML
# Rust package metadata and dependencies for pilot v2.
|
|
[package]
|
|
name = "pilot-v2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
thiserror = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|
|
rumqttc = "0.24"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "signal", "sync"] }
|
|
sysinfo = "0.30"
|
|
local-ip-address = "0.6"
|
|
zbus = "3"
|
|
hostname = "0.4"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { version = "0.52", features = ["Win32_System_Power"] }
|