This commit is contained in:
Rph :3
2024-03-29 20:21:19 +01:00
commit 828977c3e3
7 changed files with 371 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[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]
symphonia = { version = "0.5.4", features = ["ogg", "vorbis"] }
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"