This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
rustboyadvance-ng/rustboyadvance-jni/Cargo.toml
Michel Heily d938767430 feat/jni: Add rustboyadvance-jni crate to export some simple JNI bindings
Former-commit-id: d4e7a622a97215a8c1b7b50bb7f08d18cb9c5716
2020-02-23 00:30:38 +02:00

17 lines
376 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-ng = {path = "../"}
jni = { version = "0.14", default-features = false }
log = "0.4.8"
env_logger = "0.7.1"