aw-lights/Cargo.toml

30 lines
696 B
TOML
Raw Normal View History

2021-07-31 14:29:21 -04:00
[package]
name = "aw-lights"
version = "0.1.0"
2021-08-08 14:15:38 -04:00
authors = ["Austen Adler <agadler@austenadler.com>"]
2021-07-31 14:29:21 -04:00
edition = "2018"
2021-10-12 17:11:44 -04:00
# build = "build.rs"
[workspace]
members = [
".",
"webui",
"common",
]
2021-07-31 14:29:21 -04:00
[dependencies]
rppal = "0.7"
ws2818-rgb-led-spi-driver = { path = "lib-ws2818-rgb-led-spi-driver/" }
2021-08-08 14:15:38 -04:00
serde = {version = "1.0", features = ["derive"]}
2021-08-18 10:02:40 -04:00
actix = "0.10.0"
actix-web = {version = "3.3.2", default_features = false}
actix-web-actors = "3.0.0"
2021-08-08 14:15:38 -04:00
rust-embed="6.0.0"
hex = "0.4.3"
2021-08-09 23:13:38 -04:00
serde_json = "1"
2021-10-12 17:11:44 -04:00
# live-view = { path = "./liveview-rust/" }
2021-08-21 17:15:26 -04:00
askama = "0.10.5"
2021-10-12 17:11:44 -04:00
common = { path = "./common" }
webui = { path = "./webui" }
2021-08-21 17:15:26 -04:00
# askama = { git = "https://github.com/djc/askama", rev = "017b590" }