Files
open-xiaoai/apps/hello/Cargo.toml
T
2025-12-31 22:53:33 +08:00

26 lines
561 B
TOML

[package]
name = "hello"
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"] }
serde = { version = "1.0", features = ["derive"] }
postcard = { version = "1.0", features = ["alloc", "use-std"] }
[target.'cfg(not(target_os = "linux"))'.dependencies]
symphonia = { version = "0.5", features = ["mp3", "wav", "pcm"] }
[target.'cfg(target_os = "linux")'.dependencies]
alsa = "0.11"