2024-03-17 19:22:12 +00:00
|
|
|
[package]
|
|
|
|
name = "jellyfin-radio"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-17 19:31:16 +00:00
|
|
|
reqwest = { version = "0.11", features = ["json", "stream", "native-tls-vendored"] }
|
2024-03-17 19:22:12 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2024-03-20 19:15:37 +00:00
|
|
|
awedio = { git = "https://github.com/jhbruhn/awedio.git", branch = "symphonia-recover-errors", features = ["symphonia-all", "async"], default-features = false }
|
2024-03-17 19:22:12 +00:00
|
|
|
anyhow = "1.0"
|
2024-03-17 20:05:18 +00:00
|
|
|
mp3lame-encoder = { git = "https://github.com/jhbruhn/mp3lame-encoder.git", branch = "arm" }
|
2024-03-19 21:01:52 +00:00
|
|
|
tokio-stream = { version = "0.1", features = ["sync", "fs"] }
|
2024-03-17 19:22:12 +00:00
|
|
|
futures-util = "0.3"
|
|
|
|
hyper = { version = "1.2", features = ["server", "http1"] }
|
|
|
|
hyper-util = {version = "0.1", features = ["tokio"] }
|
|
|
|
bytes = "1.5"
|
|
|
|
http-body-util = "0.1"
|
|
|
|
async-broadcast = "0.7"
|
|
|
|
future-bool = "0.1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
symphonia = { version = "0.5.4", features = ["all"] }
|
|
|
|
envconfig = "0.10"
|
2024-03-19 21:01:52 +00:00
|
|
|
chrono = "0.4.35"
|
|
|
|
itertools = "0.12.1"
|
|
|
|
rand = "0.8.5"
|
2024-03-19 21:27:26 +00:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
tracing = "0.1"
|