3c6628138c
Former-commit-id: b8e8f73c8202f93e4bb2a575ee3d1b3083ddabb1 Former-commit-id: 355c634b4da8fbea1d228da8fc95e37012237bbd
23 lines
645 B
TOML
23 lines
645 B
TOML
[package]
|
|
name = "rustboyadvance-sdl2"
|
|
version = "0.1.0"
|
|
authors = ["Michel Heily <michelheily@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
rustboyadvance-core = { path = "../../core/", features = ["elf_support", "arm7tdmi_dispatch_table"] }
|
|
sdl2 = { version = "0.33.0", features = ["image"] }
|
|
ringbuf = "0.2.2"
|
|
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"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[features]
|
|
debugger = ["rustboyadvance-core/debugger"]
|
|
gdb = ["rustboyadvance-core/gdb"] |