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"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
nih_plug = { path = ".." }
|
|
|
|
|
2022-02-10 04:41:30 +11:00
|
|
|
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"
|
|
|
|
egui = "0.16"
|
|
|
|
# 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"
|
2022-02-07 03:12:57 +11:00
|
|
|
parking_lot = "0.12"
|