24 lines
569 B
TOML
24 lines
569 B
TOML
|
|
[package]
|
||
|
|
name = "lightcontrol"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = ["mic"]
|
||
|
|
mic = ["dep:cpal"]
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
anyhow = "1"
|
||
|
|
cpal = { version = "0.15", optional = true }
|
||
|
|
crossterm = "0.28"
|
||
|
|
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
|
||
|
|
ratatui = "0.29"
|
||
|
|
reqwest = { version = "0.12", features = ["json"] }
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
|
||
|
|
tokio-tungstenite = "0.24"
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
lto = "thin"
|