ha-now-playing/Cargo.toml

29 lines
882 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-02-13 13:50:11 +01:00
version = "0.3.2"
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]
anyhow = "1.0.56"
async-tungstenite = { version = "0.17.1", features = ["tokio-rustls-native-certs"] }
clap = { version = "3.1.6", features = ["cargo", "unicode", "derive", "env"] }
color-eyre = "0.6.1"
futures = "0.3.21"
html-escape = "0.2.11"
reqwest = { version = "0.11.10", features = ["blocking", "json"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
tokio = { version = "1.17.0", features = ["full"] }
tracing = "0.1.32"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.9", features = ["env-filter", "registry"] }
tracing-tree = "0.2.0"
2021-07-31 17:16:00 +02:00
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"