ha-now-playing/Cargo.toml
2021-07-31 17:16:00 +02:00

18 lines
458 B
TOML

[package]
name = "ha-now-playing"
description = "Retrieves the state of a media_player entity from Home Assistant"
version = "0.1.0"
authors = ["Erwin Boskma <erwin@datarift.nl>"]
edition = "2018"
[dependencies]
clap = "3.0.0-beta.2"
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"