[package] name = "vst" version = "0.4.0" edition = "2021" [lib] name = "vst" crate-type = ["cdylib", "rlib"] [features] default = ["vulkan"] pixels = ["gb-emu-lib/pixels-renderer"] vulkan = ["dep:raw-window-handle", "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 }