gb-emu/gb-vst/Cargo.toml

24 lines
667 B
TOML

[package]
name = "twinc_emu_vst"
version = "0.4.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["vulkan-static"]
pixels = ["gb-emu-lib/pixels-renderer"]
vulkan = ["dep:raw-window-handle", "gb-emu-lib/vulkan-renderer"]
vulkan-static = ["vulkan", "gb-emu-lib/vulkan-static"]
[dependencies]
gb-emu-lib = { path = "../lib", features = ["config"] }
nih_plug = { path = "../vendored/nih-plug", features = ["standalone"] }
baseview = { path = "../vendored/baseview" }
async-ringbuf = "0.1"
futures = "0.3"
keyboard-types = "0.6.2"
raw-window-handle = { version = "0.5", optional = true }
serde = { version = "1.0", features = ["derive"] }