33 lines
571 B
TOML
33 lines
571 B
TOML
[package]
|
|
name = "musicgen"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["Atridad Lahiji <me@atri.dad>"]
|
|
description = "Generate electronic music without AI"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
# Audio processing and synthesis
|
|
cpal = "0.16"
|
|
hound = "3.5"
|
|
|
|
# Math and utilities
|
|
rand = "0.8"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# Real-time audio
|
|
rodio = "0.20"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.6"
|
|
|
|
[[bin]]
|
|
name = "musicgen"
|
|
path = "src/main.rs"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|