Skip to content

Commit

Permalink
Prevent nih_plug_* from enabling default features
Browse files Browse the repository at this point in the history
Which would otherwise make compiling without VST3 support impossible.
  • Loading branch information
robbert-vdh committed Mar 10, 2024
1 parent 57db4b5 commit e9dff5b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nih_plug_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ quote = "1.0"
proc-macro2 = "1.0"

[dev-dependencies]
nih_plug = { path = ".." }
nih_plug = { path = "..", default-features = false }
2 changes: 1 addition & 1 deletion nih_plug_egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default_fonts = ["egui-baseview/default_fonts"]
rayon = ["egui-baseview/rayon"]

[dependencies]
nih_plug = { path = ".." }
nih_plug = { path = "..", default-features = false }
raw-window-handle = "0.5"
baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "2c1b1a7b0fef1a29a5150a6a8f6fef6a0cbab8c4" }
crossbeam = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion nih_plug_iced/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async-std = ["iced_baseview/async-std"]
smol = ["iced_baseview/smol"]

[dependencies]
nih_plug = { path = ".." }
nih_plug = { path = "..", default-features = false }
nih_plug_assets = { git = "https://github.com/robbert-vdh/nih_plug_assets.git" }

# The currently targeted version of baseview uses a different version of
Expand Down
2 changes: 1 addition & 1 deletion nih_plug_vizia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "ISC"
description = "An adapter to use VIZIA GUIs with NIH-plug"

[dependencies]
nih_plug = { path = ".." }
nih_plug = { path = "..", default-features = false }
nih_plug_assets = { git = "https://github.com/robbert-vdh/nih_plug_assets.git" }

baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "2c1b1a7b0fef1a29a5150a6a8f6fef6a0cbab8c4" }
Expand Down

0 comments on commit e9dff5b

Please sign in to comment.