26 lines
714 B
TOML
26 lines
714 B
TOML
[package]
|
|
name = "towerd"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Tower daemon for KW1FOX-1"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
futures = "0.3"
|
|
influxdb2 = { version = "0.5", default-features = false, features = ["rustls"] }
|
|
rppal = "0.22"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "sync", "time"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# Had to pin stack for rpi
|
|
idna_adapter = "=1.2.1"
|
|
icu_collections = "=2.1.1"
|
|
icu_locale_core = "=2.1.1"
|
|
icu_normalizer = "=2.1.1"
|
|
icu_normalizer_data = "=2.1.1"
|
|
icu_properties = "=2.1.2"
|
|
icu_properties_data = "=2.1.2"
|
|
icu_provider = "=2.1.1"
|