Trying to clena the mess opened by plugins
This commit is contained in:
25
plugins/nih-plug-egui/Cargo.toml
Normal file
25
plugins/nih-plug-egui/Cargo.toml
Normal file
@@ -0,0 +1,25 @@
|
||||
[package]
|
||||
name = "nih_plug_egui"
|
||||
version = "0.0.0"
|
||||
edition = "2021"
|
||||
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
||||
license = "ISC"
|
||||
|
||||
description = "An adapter to use egui GUIs with NIH-plug"
|
||||
|
||||
[features]
|
||||
default = ["opengl", "default_fonts"]
|
||||
# `nih_plug_egui` always uses OpenGL since egui's wgpu backend is still unstable
|
||||
# depending on the platform
|
||||
opengl = ["egui-baseview/opengl"]
|
||||
default_fonts = ["egui-baseview/default_fonts"]
|
||||
|
||||
[dependencies]
|
||||
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug", default-features = false }
|
||||
raw-window-handle = "0.5"
|
||||
baseview = { path = "../baseview" }
|
||||
crossbeam = "0.8"
|
||||
egui-baseview = { path = "../egui-baseview" }
|
||||
parking_lot = "0.12"
|
||||
# To make the state persistable
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
Reference in New Issue
Block a user