22 lines
425 B
TOML
22 lines
425 B
TOML
[package]
|
|
name = "google-home"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.66"
|
|
impl_cast = { path = "../impl_cast" }
|
|
serde = { version ="1.0.149", features = ["derive"] }
|
|
serde_json = "1.0.89"
|
|
serde_with = "2.1.0"
|
|
thiserror = "1.0.37"
|
|
|
|
[dependencies.uuid]
|
|
version = "1.2.2"
|
|
features = [
|
|
"v4",
|
|
"serde",
|
|
]
|