35 lines
810 B
TOML
35 lines
810 B
TOML
[package]
|
|
name = "automation"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = [
|
|
"impl_cast",
|
|
"google-home"
|
|
]
|
|
|
|
[dependencies]
|
|
rumqttc = "0.18"
|
|
serde = { version ="1.0.149", features = ["derive"] }
|
|
serde_json = "1.0.89"
|
|
impl_cast = {path = "./impl_cast"}
|
|
google-home = {path = "./google-home"}
|
|
paste = "1.0.10"
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
toml = "0.5.10"
|
|
dotenv = "0.15.0"
|
|
anyhow = "1.0.68"
|
|
reqwest = { version = "0.11.13", features = ["json", "rustls-tls"], default-features = false } # Use rustls, since the other packages also use rustls
|
|
axum = "0.6.1"
|
|
serde_repr = "0.1.10"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
|
bytes = "1.3.0"
|
|
pollster = "0.2.5"
|
|
regex = "1.7.0"
|
|
parking_lot = "0.12.1"
|
|
|
|
[profile.release]
|
|
lto=true
|