Init Commit

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-07-02 21:58:21 +02:00
commit ad38d6e4e8
9 changed files with 2444 additions and 0 deletions

7
xtask/Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "xtask"
version = "0.1.0"
edition = "2021"
[dependencies]
nih_plug_xtask = { git = "https://github.com/robbert-vdh/nih-plug.git" }

3
xtask/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() -> nih_plug_xtask::Result<()> {
nih_plug_xtask::main()
}