-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 770 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![allow(non_snake_case)]
[package]
#[allow(non_snake_case)]
name = "rust_lumibaer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["dep:ws2818-rgb-led-spi-driver"]
# The simulate feature will run the application using a simulated LED-Strip
simulate = ["dep:speedy2d"]
[dependencies]
paho-mqtt = "0.11"
fps_clock = "2.0"
futures = "0.3.4"
prisma = "0.1.1"
angular-units = "0.2.4"
rand = "0.8.5"
ctrlc = { version = "3.2.1", features = ["termination"] }
# portaudio = "0.7.0"
spectrum-analyzer = "1.2.3"
dotenv = "0.15.0"
lazy_static = "1.4.0"
ws2818-rgb-led-spi-driver = { version = "2.0.0", optional = true }
speedy2d = { version = "1.0.5", optional = true }