gb-emu/gb-vst/Cargo.toml

35 lines
863 B
TOML
Raw Normal View History

2023-03-04 09:15:25 +11:00
[package]
name = "twinc_emu_vst"
version = "0.5.1"
2023-03-04 09:15:25 +11:00
edition = "2021"
2023-03-04 09:31:39 +11:00
[lib]
crate-type = ["cdylib", "rlib"]
2023-03-16 10:48:08 +11:00
[features]
2024-02-09 10:20:00 +11:00
default = ["plugin", "wgpu"]
2023-10-05 11:05:41 +11:00
pixels = ["gb-emu-lib/pixels-renderer"]
vulkan = ["gb-emu-lib/vulkan-renderer"]
2023-10-05 12:42:03 +11:00
vulkan-static = ["vulkan", "gb-emu-lib/vulkan-static"]
wgpu = ["gb-emu-lib/wgpu-renderer"]
2023-11-01 17:13:52 +11:00
plugin = [
"dep:nih_plug",
"dep:baseview",
"dep:async-ringbuf",
"dep:futures",
"dep:keyboard-types",
]
2023-03-04 09:15:25 +11:00
[dependencies]
2023-10-13 09:20:31 +11:00
gb-emu-lib = { workspace = true }
2024-02-08 15:27:48 +11:00
nih_plug = { workspace = true, features = [
"standalone",
"vst3",
], optional = true }
2023-11-01 17:13:52 +11:00
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 }
2024-02-08 15:27:48 +11:00
raw-window-handle = { workspace = true }
2023-10-05 12:42:03 +11:00
serde = { version = "1.0", features = ["derive"] }