2022-03-18 09:14:45 +11:00
|
|
|
[package]
|
|
|
|
name = "nih_plug_vizia"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
|
|
|
license = "ISC"
|
|
|
|
|
|
|
|
description = "An adapter to use VIZIA GUIs with NIH-plug"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
nih_plug = { path = ".." }
|
|
|
|
nih_plug_assets = { git = "https://github.com/robbert-vdh/nih_plug_assets.git" }
|
|
|
|
|
2023-11-06 01:46:12 +11:00
|
|
|
baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "f0639b787bbda506434d3f6b5c91e94ca59904c6" }
|
2023-11-15 08:40:39 +11:00
|
|
|
vizia = { git = "https://github.com/vizia/vizia.git", rev = "f3574758ad80bb70392812b075614cccc7489c7c", default_features = false, features = ["baseview", "clipboard", "x11"] }
|
2023-11-06 01:46:12 +11:00
|
|
|
|
2022-03-18 09:14:45 +11:00
|
|
|
crossbeam = "0.8"
|
2022-07-14 07:07:59 +10:00
|
|
|
# To make the state persistable
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|