rust-music-player-thingy/Cargo.toml

17 lines
367 B
TOML
Raw Permalink Normal View History

2024-03-29 20:21:19 +01:00
[package]
name = "rust-music"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-03-30 19:04:58 +01:00
rodio = { version = "0.17.3", features = ["vorbis"], default-features = false }
anyhow = "*"
2024-03-29 20:21:19 +01:00
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"