-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
36 lines (29 loc) · 902 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
33
34
35
36
[package]
name = "vst_window"
version = "0.3.0"
authors = ["Anton Lazarev <https://antonok.com>"]
edition = "2018"
description = "Cross-platform windowing library for VST plugins"
repository = "https://github.com/antonok-edm/vst_window"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["vst", "window", "plugin", "cross-platform", "audio"]
categories = ["external-ffi-bindings", "gui", "os"]
[lib]
crate-type = ["lib"]
[dependencies]
raw-window-handle = "^ 0.4"
[target.'cfg(all(unix, not(target_os = "ios"), not(target_os = "macos")))'.dependencies]
xcb = "^ 0.9"
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "^ 0.22"
objc = "^ 0.2"
once_cell = "^ 1.3"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "^ 0.3.9", features = ["windowsx"] }
once_cell = "^ 1.3"
[dev-dependencies]
vst = "^ 0.2.0"
[[example]]
name = "basic"
crate-type = ["cdylib"]