gb-emu/gb-vst/Cargo.toml
2023-11-01 17:13:52 +11:00

31 lines
864 B
TOML

[package]
name = "twinc_emu_vst"
version = "0.5.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["plugin", "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"]
plugin = [
"dep:nih_plug",
"dep:baseview",
"dep:async-ringbuf",
"dep:futures",
"dep:keyboard-types",
]
[dependencies]
gb-emu-lib = { workspace = true }
nih_plug = { workspace = true, features = ["standalone"], optional = true }
baseview = { workspace = true, optional = true }
async-ringbuf = { version = "0.1", optional = true }
futures = { version = "0.3", optional = true }
keyboard-types = { version = "0.6.2", optional = true }
raw-window-handle = { version = "0.5", optional = true }
serde = { version = "1.0", features = ["derive"] }