Move features section in main Cargo.toml
This commit is contained in:
parent
7789432879
commit
15f27e2746
1 changed files with 6 additions and 6 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -22,6 +22,12 @@ members = [
|
||||||
"plugins/diopser",
|
"plugins/diopser",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = []
|
||||||
|
# Enabling this feature will cause the plugin to terminate when allocations
|
||||||
|
# occur in the processing function while compiling in debug mode.
|
||||||
|
assert_process_allocs = ["assert_no_alloc"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nih_plug_derive = { path = "nih_plug_derive" }
|
nih_plug_derive = { path = "nih_plug_derive" }
|
||||||
|
|
||||||
|
@ -49,9 +55,3 @@ features = [
|
||||||
"Win32_System_LibraryLoader",
|
"Win32_System_LibraryLoader",
|
||||||
"Win32_System_Performance",
|
"Win32_System_Performance",
|
||||||
]
|
]
|
||||||
|
|
||||||
[features]
|
|
||||||
default = []
|
|
||||||
# Enabling this feature will cause the plugin to terminate when allocations
|
|
||||||
# occur in the processing function while compiling in debug mode.
|
|
||||||
assert_process_allocs = ["assert_no_alloc"]
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue