2024-03-22 03:07:06 +03:00
|
|
|
[package]
|
|
|
|
name = "streamer"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-14 23:48:14 +03:00
|
|
|
brotli = "5.0.0"
|
2024-03-22 03:07:06 +03:00
|
|
|
cpal = "0.15.3"
|
2024-04-09 20:54:32 +03:00
|
|
|
futures-util = { version = "0.3.30", features = ["futures-sink", "sink"] }
|
2024-04-27 15:36:28 +03:00
|
|
|
iced = { git = "https://github.com/iced-rs/iced", features = ["tokio"] }
|
2024-03-22 04:14:19 +03:00
|
|
|
ringbuf = "0.3.3"
|
2024-05-03 04:32:47 +03:00
|
|
|
rubato = "0.15.0"
|
2024-04-15 03:38:03 +03:00
|
|
|
rustls-pemfile = "2.1.2"
|
2024-04-19 23:12:14 +03:00
|
|
|
rustls-platform-verifier = "0.2.0"
|
2024-05-03 04:32:47 +03:00
|
|
|
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"
|
2024-04-20 15:25:45 +03:00
|
|
|
tokio-tungstenite = { version = "0.21.0", features = ["rustls-tls-webpki-roots"] }
|