gb-emu/gb-emu/Cargo.toml

35 lines
973 B
TOML
Raw Normal View History

2023-03-03 19:31:34 +11:00
[package]
2023-03-03 19:33:28 +11:00
name = "gb-emu"
2023-05-19 19:15:01 +10:00
version = "0.3.3"
2023-03-03 19:31:34 +11:00
edition = "2021"
[features]
2023-10-01 10:01:17 +11:00
default = ["vulkan"]
pixels = ["dep:pixels"]
2023-10-01 11:10:49 +11:00
vulkan = ["dep:ash", "dep:ash-window", "dep:raw-window-handle", "dep:naga"]
camera = ["dep:nokhwa", "dep:send_wrapper"]
2023-03-03 19:31:34 +11:00
[dependencies]
2023-03-16 11:28:17 +11:00
gb-emu-lib = { path = "../lib" }
2023-03-19 10:24:03 +11:00
clap = { version = "4.1.8", features = ["derive"] }
2023-03-16 11:28:17 +11:00
gilrs = "0.10"
cpal = "0.15"
futures = "0.3"
2023-03-03 19:31:34 +11:00
ctrlc = "3.2.5"
2023-09-28 15:43:55 +10:00
nokhwa = { version = "0.10.3", features = [
"input-avfoundation",
], optional = true }
send_wrapper = { version = "0.6.0", optional = true }
2023-04-27 09:55:25 +10:00
winit = "0.28"
winit_input_helper = "0.14"
bytemuck = "1.13"
2023-09-28 17:28:25 +10:00
pixels = { version = "0.12", optional = true }
2023-10-01 10:01:17 +11:00
ash = { git = "https://github.com/ash-rs/ash", features = [
"linked",
], optional = true }
ash-window = { git = "https://github.com/ash-rs/ash", optional = true }
raw-window-handle = { version = "0.5", optional = true }
[build-dependencies]
2023-10-01 11:10:49 +11:00
naga = { version = "0.13", optional = true, features = ["wgsl-in", "spv-out"] }