19 lines
409 B
TOML
19 lines
409 B
TOML
[package]
|
|
name = "automation"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rumqttc = "0.18"
|
|
serde = { version ="1.0.149", features = ["derive"] }
|
|
serde_json = "1.0.89"
|
|
dotenv = "0.15.0"
|
|
impl_cast = {path = "./impl_cast"}
|
|
google-home = {path = "./google-home"}
|
|
paste = "1.0.10"
|
|
|
|
[profile.release]
|
|
lto=true
|