12d9edf5c4
Former-commit-id: 93db7bc11bff9a48f4d66e0a378cd77ab42ca197 Former-commit-id: a6ce714c2a6a4112ff30d748c0686b1b2da41c6b
24 lines
533 B
TOML
24 lines
533 B
TOML
[package]
|
|
name = "rustboyadvance-libretro"
|
|
version = "0.1.0"
|
|
authors = ["Michel Heily <michelheily@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
[dependencies]
|
|
rustboyadvance-core = { path = "../../core/", features = ["no_video_interface"] }
|
|
rustboyadvance-utils = { path = "../../utils" }
|
|
log = "0.4.8"
|
|
libc = "0.2"
|
|
libretro-sys = "0.1.1"
|
|
bit = "^0.1"
|
|
unsafe_unwrap = "0.1.0"
|
|
|
|
[dependencies.libretro-backend]
|
|
git = "https://github.com/michelhe/libretro-backend.git"
|
|
branch = "rustboyadvance"
|
|
features = ["logging"] |