forked from vizia/vizia-plug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (25 loc) · 873 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "vizia_plug"
version = "0.1.0"
edition = "2021"
authors = ["George Atkinson <[email protected]>"]
license = "MIT"
description = "An adapter to use VIZIA GUIs with NIH-plug"
[workspace]
members = ["xtask", "examples/gain_gui"]
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git" }
# vizia = { git = "https://github.com/vizia/vizia", default_features = false, features = ["baseview", "clipboard", "x11"] }
vizia = { git = "https://github.com/vizia/vizia", branch = "vizia_plug", default_features = false, features = ["baseview", "clipboard", "x11"] }
crossbeam = "0.8"
# To make the state persistable
serde = { version = "1.0", features = ["derive"] }
# [profile.release]
# lto = "thin"
# strip = "symbols"
# [profile.profiling]
# inherits = "release"
# debug = true
# strip = "none"