aw-lights/Cargo.toml

26 lines
506 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"
2022-11-17 15:58:34 -05:00
repository = "https://gitea.austen-wares.com/stonewareslord/aw-lights.git"
2021-10-12 17:11:44 -04:00
# build = "build.rs"
[workspace]
members = [
".",
"webui",
"common",
]
2021-07-31 14:29:21 -04:00
[dependencies]
2022-11-17 15:58:34 -05:00
rppal = "0.14"
2021-10-12 17:12:24 -04:00
ws2818-rgb-led-spi-driver = { path = "./lib-ws2818-rgb-led-spi-driver" }
2021-10-12 17:11:44 -04:00
common = { path = "./common" }
webui = { path = "./webui" }
dotenv = "0.15.0"
2021-10-16 07:36:15 -04:00
[profile.release]
lto = true
codegen-units = 1