31 lines
537 B
TOML
31 lines
537 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 = ["full"] }
|
|
log = "0.4"
|
|
env_logger = "0.10"
|
|
toml = "0.5.10"
|
|
dotenv = "0.15.0"
|
|
anyhow = "1.0.68"
|
|
reqwest = "0.11.13"
|
|
axum = "0.6.1"
|
|
serde_repr = "0.1.10"
|
|
|
|
[profile.release]
|
|
lto=true
|