ha-now-playing/Cargo.toml

23 lines
608 B
TOML

[package]
name = "ha-now-playing"
description = "Retrieves the state of a media_player entity from Home Assistant"
version = "0.3.2"
authors = ["Erwin Boskma <erwin@datarift.nl>"]
edition = "2021"
[dependencies]
anyhow = "1.0.52"
clap = "3.0.0-beta.2"
color-eyre = "0.6.0"
html-escape = "0.2.9"
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.5", features = ["env-filter"] }
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"