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

24 lines
658 B
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 = ["opengl"]
opengl = []
2022-02-06 10:22:33 +11:00
[dependencies]
nih_plug = { path = ".." }
baseview = { git = "https://github.com/robbert-vdh/baseview.git", branch = "feature/mouse-event-modifiers" }
2022-02-06 10:22:33 +11:00
crossbeam = "0.8"
2022-02-28 02:49:18 +11:00
egui = "0.17"
2022-02-06 10:22:33 +11:00
# Upstream doesn't work with the current baseview and egui versions
egui-baseview = { git = "https://github.com/robbert-vdh/egui-baseview.git", branch = "fix/update-dependencies" }
2022-02-09 22:24:01 +11:00
lazy_static = "1.4"
parking_lot = "0.12"