bleak/Cargo.toml
Wyatt J. Miller 7112dadf29 cleaned up code, changed on/off functionality to boolean
on/off functionality was used by u32. once this u32 reaches
a certain number, it is then an overflow error. booleans doesn't
have this problem.
2020-04-03 23:39:59 +01:00

21 lines
541 B
TOML

[package]
name = "bleak"
version = "0.1.0"
authors = ["Wyatt J. Miller <wjmiller2016@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.104", features = ["derive"] }
serde_derive = "1.0.104"
serde_json = "1.0.44"
reqwest = "0.9.24"
select = "0.4.3"
chrono = "0.4.10"
rppal = {version = "0.11.3", features = ['hal']}
smart-leds = "0.3.0"
ws2812-spi = "0.2.0"
embedded-hal = "0.2.3"
linux-embedded-hal = "*"
failure = "0.1.7"