standalone version

This commit is contained in:
Haze Weathers 2025-09-17 12:38:55 -06:00
parent 1f816f1765
commit 5144852e01
6 changed files with 771 additions and 70 deletions

View file

@ -4,9 +4,14 @@ version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
crate-type = ["cdylib", "lib"]
[[bin]]
name = "dfpworm"
path = "src/standalone.rs"
[dependencies]
atomic_float = "1.1"
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", version = "0.0.0" }
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", version = "0.0.0", features = ["standalone"]}
nih_plug_iced = { git = "https://github.com/robbert-vdh/nih-plug.git", version = "0.0.0" }