a56f515563
Former-commit-id: 9a8bb7f68ba7638e758b01cef17654b6057b1db3 Former-commit-id: 83dc923063d75a167662474446f9fa7eb0ee836b
26 lines
736 B
TOML
26 lines
736 B
TOML
[package]
|
|
name = "rustboyadvance-sdl2"
|
|
version = "0.1.0"
|
|
authors = ["Michel Heily <michelheily@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
rustboyadvance-core = { path = "../../rustboyadvance-core/" }
|
|
sdl2 = { version = "0.33.0", features = ["image"] }
|
|
ringbuf = "0.2.1"
|
|
bytesize = "1.0.0"
|
|
clap = { version = "2.33", features = ["color", "yaml"] }
|
|
log = "0.4.8"
|
|
flexi_logger = { version = "0.14", features = ["colors"] }
|
|
bit = "^0.1"
|
|
spin_sleep = "0.3.7"
|
|
reqwest = { version = "0.10", features = ["blocking"] }
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[features]
|
|
debugger = ["rustboyadvance-core/debugger"]
|
|
gdb = ["rustboyadvance-core/gdb"]
|
|
arm7tdmi_dispatch_table = ["rustboyadvance-core/arm7tdmi_dispatch_table"]
|