Move nih_plug to the repo's root
Makes more sense to have this be on the same level as the workspace since technically this crate can be used separately.
This commit is contained in:
parent
c3f8b8fb8c
commit
070e68c084
13
Cargo.toml
13
Cargo.toml
|
@ -1,2 +1,13 @@
|
|||
[package]
|
||||
name = "nih_plug"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
|
||||
[workspace]
|
||||
members = ["nih_plug", "nih_plug_derive", "plugins/gain"]
|
||||
members = ["nih_plug_derive", "plugins/gain"]
|
||||
|
||||
[dependencies]
|
||||
nih_plug_derive = { path = "nih_plug_derive" }
|
||||
vst3-sys = { git = "https://github.com/RustAudio/vst3-sys.git" }
|
||||
|
|
7
nih_plug/Cargo.lock
generated
7
nih_plug/Cargo.lock
generated
|
@ -1,7 +0,0 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "nih-plug"
|
||||
version = "0.1.0"
|
|
@ -1,10 +0,0 @@
|
|||
[package]
|
||||
name = "nih_plug"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
|
||||
[dependencies]
|
||||
nih_plug_derive = { path = "../nih_plug_derive" }
|
||||
vst3-sys = { git = "https://github.com/RustAudio/vst3-sys.git" }
|
|
@ -7,4 +7,4 @@ edition = "2021"
|
|||
crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
nih_plug = { path = "../../nih_plug" }
|
||||
nih_plug = { path = "../../" }
|
||||
|
|
Loading…
Reference in a new issue