diff --git a/Cargo.toml b/Cargo.toml index 4309dd66..5bf4a846 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,2 @@ -[package] -name = "nih-plug" -version = "0.1.0" -edition = "2021" -authors = ["Robbert van der Helm "] -license = "GPL-3.0-or-later" - -[dependencies] +[workspace] +members = ["nih-plug"] diff --git a/nih-plug/Cargo.lock b/nih-plug/Cargo.lock new file mode 100644 index 00000000..563bbda9 --- /dev/null +++ b/nih-plug/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "nih-plug" +version = "0.1.0" diff --git a/nih-plug/Cargo.toml b/nih-plug/Cargo.toml new file mode 100644 index 00000000..4309dd66 --- /dev/null +++ b/nih-plug/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "nih-plug" +version = "0.1.0" +edition = "2021" +authors = ["Robbert van der Helm "] +license = "GPL-3.0-or-later" + +[dependencies] diff --git a/src/lib.rs b/nih-plug/src/lib.rs similarity index 100% rename from src/lib.rs rename to nih-plug/src/lib.rs diff --git a/src/params.rs b/nih-plug/src/params.rs similarity index 100% rename from src/params.rs rename to nih-plug/src/params.rs diff --git a/src/plugin.rs b/nih-plug/src/plugin.rs similarity index 100% rename from src/plugin.rs rename to nih-plug/src/plugin.rs