Refactor dir rustboyadvance-core -> core
Former-commit-id: 5af970f6d56d321472f2b91885e41ca113390986 Former-commit-id: 748e222a36362eb5ac8909068c32f2d3f98ca536
This commit is contained in:
parent
f65e22cc41
commit
879374a9b0
|
@ -1,6 +1,6 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"rustboyadvance-core/",
|
"core",
|
||||||
"platform/rustboyadvance-sdl2",
|
"platform/rustboyadvance-sdl2",
|
||||||
"platform/rustboyadvance-libretro",
|
"platform/rustboyadvance-libretro",
|
||||||
"platform/rustboyadvance-minifb",
|
"platform/rustboyadvance-minifb",
|
||||||
|
|
|
@ -12,7 +12,7 @@ Nintendo GameBoy Advance ™ emulator and debugger, written in rust.
|
||||||
WebAssembly Demo: https://michelhe.github.io/rustboyadvance-ng/ ![Deploy](https://github.com/michelhe/rustboyadvance-ng/workflows/Deploy/badge.svg?branch=master)
|
WebAssembly Demo: https://michelhe.github.io/rustboyadvance-ng/ ![Deploy](https://github.com/michelhe/rustboyadvance-ng/workflows/Deploy/badge.svg?branch=master)
|
||||||
|
|
||||||
# Project Structure
|
# Project Structure
|
||||||
* `rustboyadvance-core/src` - Main library crate
|
* `core/` - Main emulator crate
|
||||||
* `bindings/` - Bindings to other languages. Currently only java binidings through JNI.
|
* `bindings/` - Bindings to other languages. Currently only java binidings through JNI.
|
||||||
* `platform/` - Constains executables & application built with `rustboyadvance-core`
|
* `platform/` - Constains executables & application built with `rustboyadvance-core`
|
||||||
* `platform/rustbodyadvance-wasm` - Web emulator powered by WebAssembly
|
* `platform/rustbodyadvance-wasm` - Web emulator powered by WebAssembly
|
||||||
|
|
|
@ -10,7 +10,7 @@ publish = false
|
||||||
crate-type = ["staticlib", "cdylib"]
|
crate-type = ["staticlib", "cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustboyadvance-core = {path = "../../rustboyadvance-core/"}
|
rustboyadvance-core = {path = "../../core/"}
|
||||||
jni = { version = "0.16", default-features = false }
|
jni = { version = "0.16", default-features = false }
|
||||||
log = {version = "0.4.8", features = ["release_max_level_info", "max_level_debug"]}
|
log = {version = "0.4.8", features = ["release_max_level_info", "max_level_debug"]}
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,4 @@ authors = ["Michel Heily <michelheily@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustboyadvance-core = {path = "../rustboyadvance-core/"}
|
rustboyadvance-core = {path = "../core/"}
|
||||||
|
|
|
@ -10,7 +10,7 @@ crate-type = ["cdylib"]
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustboyadvance-core = { path = "../../rustboyadvance-core/" }
|
rustboyadvance-core = { path = "../../core/" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
libretro-sys = "0.1.1"
|
libretro-sys = "0.1.1"
|
||||||
|
|
|
@ -5,7 +5,7 @@ authors = ["Michel Heily <michelheily@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustboyadvance-core = {path = "../../rustboyadvance-core/"}
|
rustboyadvance-core = {path = "../../core/"}
|
||||||
minifb = "0.11.2"
|
minifb = "0.11.2"
|
||||||
clap = {version = "2.33", features = ["color", "yaml"]}
|
clap = {version = "2.33", features = ["color", "yaml"]}
|
||||||
bit = "^0.1"
|
bit = "^0.1"
|
||||||
|
|
|
@ -5,7 +5,7 @@ authors = ["Michel Heily <michelheily@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustboyadvance-core = { path = "../../rustboyadvance-core/", features = ["elf_support"] }
|
rustboyadvance-core = { path = "../../core/", features = ["elf_support"] }
|
||||||
sdl2 = { version = "0.33.0", features = ["image"] }
|
sdl2 = { version = "0.33.0", features = ["image"] }
|
||||||
ringbuf = "0.2.1"
|
ringbuf = "0.2.1"
|
||||||
bytesize = "1.0.0"
|
bytesize = "1.0.0"
|
||||||
|
|
|
@ -13,7 +13,7 @@ default = ["console_error_panic_hook"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
js-sys = "0.3.37"
|
js-sys = "0.3.37"
|
||||||
wasm-bindgen = "0.2"
|
wasm-bindgen = "0.2"
|
||||||
rustboyadvance-core = { path = "../../rustboyadvance-core" }
|
rustboyadvance-core = { path = "../../core" }
|
||||||
|
|
||||||
# The `console_error_panic_hook` crate provides better debugging of panics by
|
# The `console_error_panic_hook` crate provides better debugging of panics by
|
||||||
# logging them with `console.error`. This is great for development, but requires
|
# logging them with `console.error`. This is great for development, but requires
|
||||||
|
|
Reference in a new issue