radioxide/streamer/Cargo.toml

32 lines
872 B
TOML
Raw Permalink Normal View History

2024-03-22 03:07:06 +03:00
[package]
name = "streamer"
version = "0.1.0"
edition = "2021"
2024-07-23 04:11:10 +03:00
[profile.release]
strip = "symbols"
opt-level = 3
overflow-checks = true
lto = true
codegen-units = 1
panic = "abort"
[lints.rust]
unsafe_code = "forbid"
2024-03-22 03:07:06 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
brotli = "5.0.0"
2024-03-22 03:07:06 +03:00
cpal = "0.15.3"
futures-util = { version = "0.3.31", features = ["futures-sink", "sink"] }
iced = { git = "https://github.com/iced-rs/iced", features = ["tokio"], rev = "42a2cb6d4f78343f43d6a68a28e5502d9426ed2c"}
2024-03-22 04:14:19 +03:00
ringbuf = "0.3.3"
rubato = "0.15.0"
2024-04-15 03:38:03 +03:00
rustls-pemfile = "2.1.2"
rustls-platform-verifier = "0.2.0"
symphonia = { version = "0.5.4", features = ["all"] }
2024-03-22 03:07:06 +03:00
tokio = { version = "1.36.0", features = ["full"] }
2024-04-15 03:38:03 +03:00
tokio-rustls = "0.25.0"
tokio-tungstenite = { version = "0.21.0", features = ["rustls-tls-webpki-roots"] }