gb-emu/gb-vst/Cargo.toml

20 lines
381 B
TOML
Raw Normal View History

2023-03-04 09:15:25 +11:00
[package]
name = "vst"
2023-05-19 19:15:01 +10:00
version = "0.3.3"
2023-03-04 09:15:25 +11:00
edition = "2021"
2023-03-04 09:31:39 +11:00
[lib]
name = "vst"
crate-type = ["cdylib", "rlib"]
2023-03-16 10:48:08 +11:00
[features]
default = []
2023-03-04 09:15:25 +11:00
[dependencies]
2023-03-17 13:33:38 +11:00
gb-emu-lib = { path = "../lib" }
2023-03-07 08:51:12 +11:00
nih_plug = { path = "../vendored/nih-plug", features = ["standalone"] }
2023-03-06 12:19:39 +11:00
baseview = { path = "../vendored/baseview" }
2023-05-18 10:36:52 +10:00
pixels = "0.12"
2023-03-07 08:51:12 +11:00
async-ringbuf = "0.1.2"
2023-03-16 11:28:17 +11:00
futures = "0.3"
2023-03-08 15:19:10 +11:00
keyboard-types = "0.6.2"