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]
|
2022-10-21 00:57:58 +11:00
|
|
|
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
|
2022-03-13 09:15:33 +11:00
|
|
|
opengl = []
|
|
|
|
|
2022-02-06 10:22:33 +11:00
|
|
|
[dependencies]
|
|
|
|
nih_plug = { path = ".." }
|
|
|
|
|
2023-11-06 02:43:10 +11:00
|
|
|
# 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"
|
|
|
|
|
2023-08-15 14:39:44 +10:00
|
|
|
baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "1d9806d5bd92275d0d8142d9c9c90198757b9b25" }
|
2022-02-06 10:22:33 +11:00
|
|
|
crossbeam = "0.8"
|
2022-10-21 00:57:58 +11:00
|
|
|
# The `egui-default-features` feature enables the default features. This makes
|
|
|
|
# it possible to opt out of this if needed.
|
2023-08-15 14:39:44 +10:00
|
|
|
egui = { version = "0.22", default-features = false }
|
|
|
|
egui-baseview = { git = "https://github.com/BillyDM/egui-baseview.git", rev = "27c027c22a83d2eb214074f922ba4115f712e483" }
|
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"] }
|