32 lines
772 B
TOML
32 lines
772 B
TOML
[package]
|
|
name = "audio-oxide"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "audio-oxide"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# --- GUI Framework ---
|
|
iced = { version = "0.13.1", features = ["tokio", "debug", "canvas", "advanced", "multi-window", "system", "svg", "tiny-skia", "web-colors", "markdown"] }
|
|
|
|
# --- Core Audio & Hardware ---
|
|
cpal = "0.16.0"
|
|
ringbuf = "0.4.8"
|
|
crossbeam-channel = "0.5.12"
|
|
|
|
# --- Module System ---
|
|
oxforge = { path = "../oxforge" }
|
|
libloading = "0.8"
|
|
rustfft = "6"
|
|
|
|
# --- Configuration & Project Management ---
|
|
confy = "1.0.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.9.7"
|
|
dirs = "6.0.0"
|
|
uuid = { version = "1.18.1", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4.42", features = ["serde"] }
|
|
tokio = "1.47.1"
|