Files

30 lines
676 B
TOML
Raw Permalink Normal View History

2026-01-02 09:59:29 +08:00
[package]
name = "xiao"
version = "0.1.0"
edition = "2024"
[profile.release]
lto = true
opt-level = "s"
codegen-units = 1
panic = "abort"
strip = true
debug = false
[dependencies]
opus = "0.3"
anyhow = "1.0"
tokio = { version = "1.48", features = ["full"] }
2026-01-03 19:17:13 +08:00
tokio-util = { version = "0.7", features = ["full"] }
2026-01-02 09:59:29 +08:00
serde = { version = "1.0", features = ["derive"] }
postcard = { version = "1.0", features = ["alloc", "use-std"] }
2026-01-02 13:04:19 +08:00
parking_lot = "0.12.5"
2026-01-03 19:17:13 +08:00
dashmap = "6.1.0"
2026-01-08 09:53:59 +08:00
thiserror = "2.0.17"
2026-01-02 09:59:29 +08:00
[target.'cfg(target_os = "linux")'.dependencies]
alsa = "0.11"
[target.'cfg(not(target_os = "linux"))'.dependencies]
symphonia = { version = "0.5", features = ["mp3", "wav", "pcm"] }