[package] name = "nih_plug_egui" version = "0.0.0" edition = "2021" authors = ["Robbert van der Helm "] license = "ISC" description = "An adapter to use egui GUIs with NIH-plug" [features] default = ["egui-default-features", "opengl"] # Use egui's default features egui-default-features = ["egui/default"] # `nih_plug_egui` always uses OpenGL since egui's wgpu backend is still unstable # depending on the platform opengl = [] [dependencies] nih_plug = { path = ".." } # The currently targeted version of baseview uses a different version of # `raw_window_handle` than NIH-plug, so we need to manually convert between them raw-window-handle = "0.4" baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "1d9806d5bd92275d0d8142d9c9c90198757b9b25" } crossbeam = "0.8" # The `egui-default-features` feature enables the default features. This makes # it possible to opt out of this if needed. egui = { version = "0.22", default-features = false } egui-baseview = { git = "https://github.com/BillyDM/egui-baseview.git", rev = "27c027c22a83d2eb214074f922ba4115f712e483" } lazy_static = "1.4" parking_lot = "0.12" # To make the state persistable serde = { version = "1.0", features = ["derive"] }