2025-10-27 16:10:57 +01:00
|
|
|
[package]
|
|
|
|
|
name = "pmoflac"
|
|
|
|
|
version = "0.1.0"
|
2026-04-05 14:06:32 +02:00
|
|
|
edition = "2024"
|
2025-10-27 16:10:57 +01:00
|
|
|
authors = ["PMOMusic"]
|
|
|
|
|
description = "Asynchronous FLAC <-> PCM streaming utilities"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "pmoflac"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
bytes = "1.6"
|
|
|
|
|
claxon = "0.4"
|
2025-11-02 08:18:50 +01:00
|
|
|
lewton = "0.10"
|
2025-10-27 16:10:57 +01:00
|
|
|
libc = "0.2"
|
|
|
|
|
libflac-sys = { version = "0.3.3", default-features = false, features = ["build-flac"] }
|
2025-11-02 08:18:50 +01:00
|
|
|
lofty = "0.22"
|
2025-10-27 18:13:50 +01:00
|
|
|
minimp3 = "0.5"
|
2025-10-27 19:25:51 +01:00
|
|
|
opus = "0.3"
|
2026-02-27 00:00:21 +01:00
|
|
|
fdk-aac = "0.8"
|
2025-11-02 08:18:50 +01:00
|
|
|
pmometadata = { path = "../pmometadata" }
|
2025-12-30 16:12:30 +01:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros", "sync", "io-util", "fs"] }
|
|
|
|
|
tracing = { workspace = true }
|
2025-10-27 16:10:57 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = "3.10"
|
2025-12-30 16:12:30 +01:00
|
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros", "sync", "io-util", "time", "fs"] }
|