-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
31 lines (28 loc) · 1.36 KB
/
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
[package]
name = "kickmessvst"
version = "0.2.2"
authors = ["Weird Constructor <[email protected]>"]
edition = "2018"
license = "AGPL-3.0-or-later"
description = "Kickmess - Port of LMMS Kicker Plugin"
[features]
mega = []
[lib]
name = "kickmessvst"
crate-type = ["cdylib", "lib"]
[dependencies]
vst = { git = "https://github.com/RustAudio/vst-rs.git" }
#vst = { git = "https://github.com/WeirdConstructor/vst-rs", branch = "host_begin_end_edit" }
#vst = { path = "/home/weictr/devel/other/vst-rs/" }
femtovg = { git = "https://github.com/femtovg/femtovg", rev = "9c5de268cd1f85d9e32d20c8a37341709c92bdb5" }
raw-gl-context = { git = "https://github.com/glowcoil/raw-gl-context" }
#raw-gl-context = { path = "/home/weictr/devel/other/raw-gl-context" }
baseview = { git = "https://github.com/WeirdConstructor/baseview.git", branch = "fix_resize_problems" }
#baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "36e4474c8aeb88" }
#baseview = { path = "/home/weictr/devel/other/baseview" }
#baseview = { path = "/home/weictr/devel/rust/baseview" }
keyboard-types = { version = "0.5.0", default-features = false }
raw-window-handle = "0.3"
gl = "0.14.0"
glutin = "0.24.1"
ringbuf = "0.2.2"