2022-02-06 10:22:33 +11:00
|
|
|
[package]
|
|
|
|
name = "nih_plug_egui"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
2022-02-09 09:25:56 +11:00
|
|
|
license = "ISC"
|
2022-02-06 10:22:33 +11:00
|
|
|
|
|
|
|
description = "An adapter to use egui GUIs with NIH-plug"
|
|
|
|
|
2022-03-13 09:15:33 +11:00
|
|
|
[features]
|
|
|
|
default = ["opengl"]
|
|
|
|
opengl = []
|
|
|
|
|
2022-02-06 10:22:33 +11:00
|
|
|
[dependencies]
|
|
|
|
nih_plug = { path = ".." }
|
|
|
|
|
2022-09-23 03:42:03 +10:00
|
|
|
baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "eae4033e7d2cc9c31ccaa2794d5d08eedf2f510c" }
|
2022-02-06 10:22:33 +11:00
|
|
|
crossbeam = "0.8"
|
2022-09-22 23:34:59 +10:00
|
|
|
egui = "0.19"
|
2022-09-23 03:42:03 +10:00
|
|
|
egui-baseview = { git = "https://github.com/BillyDM/egui-baseview.git", rev = "46e21cc11c57c705fb83611389399ec3d2670a44" }
|
2022-02-09 22:24:01 +11:00
|
|
|
lazy_static = "1.4"
|
2022-02-07 03:12:57 +11:00
|
|
|
parking_lot = "0.12"
|
2022-07-14 07:13:15 +10:00
|
|
|
# To make the state persistable
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|