20 lines
567 B
TOML
20 lines
567 B
TOML
[package]
|
|
name = "neolights"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
smart-leds = "0.3.0"
|
|
ws281x-rpi = "0.0.1"
|
|
rocket = { version="0.5.0-rc.2", features = ["json"] }
|
|
# rusqlite = { version = "0.28.0", features = ["bundled"] }
|
|
r2d2 = "0.8.10"
|
|
r2d2_sqlite = { version = "0.21.0", features = ["bundled"] }
|
|
tokio = { version = "1.21.1", features = ["full"] }
|
|
serde = "1.0.145"
|
|
|
|
[target.armv7-unknown-linux-gnueabihf]
|
|
linker = "armv7-unknown-linux-gnueabihf-gcc"
|