Files
pmomusic/pmoaudio/Cargo.toml

30 lines
605 B
TOML
Raw Normal View History

2025-10-11 00:33:13 +02:00
[package]
name = "pmoaudio"
version = "0.1.0"
edition = "2021"
[features]
default = []
simd = []
2025-10-11 00:33:13 +02:00
[dependencies]
tokio = { workspace = true }
2025-11-01 21:10:57 +01:00
tokio-util = { version = "0.7", features = ["io"] }
async-trait = { workspace = true }
2025-11-01 21:10:57 +01:00
futures-util = "0.3"
pmoflac = { path = "../pmoflac" }
pmometadata = { path = "../pmometadata" }
paste = "1"
soxr = "0.6.0"
bytemuck = "1.24.0"
2025-11-01 21:10:57 +01:00
reqwest = { version = "0.12", features = ["stream"] }
tracing = { workspace = true }
cpal = "0.15"
once_cell = "1.20"
2025-10-11 00:33:13 +02:00
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3"
2025-11-01 21:10:57 +01:00
wiremock = "0.6"
tracing-subscriber = { workspace = true }