[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] reqwest = { version = "0.11", features = ["json", "stream", "native-tls-vendored"] } tokio = { version = "1", features = ["full"] } awedio = { git = "https://github.com/jhbruhn/awedio.git", branch = "symphonia-recover-errors", features = ["symphonia-all", "async"], default-features = false } anyhow = "1.0" mp3lame-encoder = { git = "https://github.com/jhbruhn/mp3lame-encoder.git", branch = "arm" } tokio-stream = { version = "0.1", features = ["sync", "fs"] } 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" chrono = "0.4.35" itertools = "0.12.1" rand = "0.8.5" tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing = "0.1"