4db32b1af2
Former-commit-id: 30a14ff0609b385b80b4c17a8f70e89fce816509 Former-commit-id: 519aeea19b3faa37b732463ecfdddb9730322021
23 lines
596 B
TOML
23 lines
596 B
TOML
[package]
|
|
name = "rustboyadvance-jni"
|
|
version = "0.1.0"
|
|
authors = ["Michel Heily <michelheily@gmail.com>"]
|
|
edition = "2018"
|
|
description = "JNI bindings for rustboyadvance core"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
rustboyadvance-core = { path = "../../core/" }
|
|
rustboyadvance-utils = { path = "../../utils/" }
|
|
jni = "0.17.0"
|
|
log = {version = "0.4.8", features = ["release_max_level_info", "max_level_debug"]}
|
|
|
|
[target.'cfg(target_os="android")'.dependencies]
|
|
android_log = "0.1.3"
|
|
|
|
[target.'cfg(not(target_os="android"))'.dependencies]
|
|
env_logger = "0.7.1"
|