ha-now-playing/Cargo.toml

23 lines
586 B
TOML
Raw Normal View History

2021-07-31 17:16:00 +02:00
[package]
name = "ha-now-playing"
description = "Retrieves the state of a media_player entity from Home Assistant"
2022-01-14 10:20:29 +01:00
version = "0.3.0"
2021-07-31 17:16:00 +02:00
authors = ["Erwin Boskma <erwin@datarift.nl>"]
2021-11-25 23:42:28 +01:00
edition = "2021"
2021-07-31 17:16:00 +02:00
[dependencies]
2022-01-14 10:06:26 +01:00
anyhow = "1.0.52"
2021-07-31 17:16:00 +02:00
clap = "3.0.0-beta.2"
2022-01-14 10:06:26 +01:00
color-eyre = "0.6.0"
2021-07-31 17:16:00 +02:00
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
2022-01-14 10:06:26 +01:00
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.5", features = ["env-filter"] }
2021-07-31 17:16:00 +02:00
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"