[package] name = "chipbox" version = "0.0.0" authors = ["chipnertkj "] exclude = ["target/", ".github/"] readme = "README.md" edition = "2021" license = "GPL-3.0-or-later" repository = "https://github.com/chipnertkj/chipbox" categories = ["multimedia::audio"] keywords = ["daw", "music", "vst", "clap", "audio"] description = "Open-source DAW with a node graph system." [badges] maintenance = { status = "actively-developed" } [dependencies] anyhow = "1.0.*" async-std = "1.12.*" bytemuck = { version = "1.13.*", features = ["derive"] } cpal = "0.15.*" home = "0.5.*" itertools = "0.10.*" nalgebra = { version = "0.32.*", features = ["serde-serialize"] } petgraph = "0.6.*" rand = "0.8.*" rb = "0.4.*" serde = { version = "1.0.*", features = ["derive"] } toml = "0.7.*" tracing = "0.1.*" tracing-subscriber = { version = "0.3.*", features = [ "tracing-log", "env-filter", ] } wgpu = "0.15.*" winit = { version = "0.28.*", features = ["serde"] } [profile.dev] lto = false opt-level = 1 incremental = true [profile.dev.package."*"] opt-level = 3 incremental = false [profile.release] lto = "fat" opt-level = 3 incremental = false debug = 2