gb-emu/gb-vst/Cargo.toml

20 lines
482 B
TOML
Raw Normal View History

2023-03-04 09:15:25 +11:00
[package]
name = "vst"
version = "0.1.0"
edition = "2021"
2023-03-04 09:31:39 +11:00
[lib]
name = "vst"
crate-type = ["cdylib", "rlib"]
2023-03-04 09:15:25 +11:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-03-08 11:28:32 +11:00
gb-emu-lib = { path = "../lib", features = ["async"] }
2023-03-07 08:51:12 +11:00
nih_plug = { path = "../vendored/nih-plug", features = ["standalone"] }
2023-03-06 12:19:39 +11:00
baseview = { path = "../vendored/baseview" }
2023-03-05 20:18:06 +11:00
pixels = "0.11.0"
2023-03-07 08:51:12 +11:00
async-ringbuf = "0.1.2"
2023-03-08 15:19:10 +11:00
futures = "0.3.26"
keyboard-types = "0.6.2"