gb-emu/gb-vst/Cargo.toml
2023-10-13 09:20:31 +11:00

24 lines
619 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 = { workspace = true }
nih_plug = { workspace = true, features = ["standalone"] }
baseview = { workspace = true }
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"] }