1
0
Fork 0
nih-plug/nih_plug_egui/Cargo.toml

32 lines
1 KiB
TOML
Raw Normal View History

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>"]
license = "ISC"
2022-02-06 10:22:33 +11:00
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 = []
2022-02-06 10:22:33 +11:00
[dependencies]
nih_plug = { path = ".." }
baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "eae4033e7d2cc9c31ccaa2794d5d08eedf2f510c" }
2022-02-06 10:22:33 +11:00
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.19", default-features = false }
egui-baseview = { git = "https://github.com/BillyDM/egui-baseview.git", rev = "46e21cc11c57c705fb83611389399ec3d2670a44" }
2022-02-09 22:24:01 +11:00
lazy_static = "1.4"
parking_lot = "0.12"
2022-07-14 07:13:15 +10:00
# To make the state persistable
serde = { version = "1.0", features = ["derive"] }