3c6628138c
Former-commit-id: b8e8f73c8202f93e4bb2a575ee3d1b3083ddabb1 Former-commit-id: 355c634b4da8fbea1d228da8fc95e37012237bbd
23 lines
485 B
TOML
23 lines
485 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"] }
|
|
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"] |