[package] name = "jaffi_support" version = "0.2.0" edition = "2021" authors = ["Benjamin Fry "] # A short blurb about the package. This is not rendered in any format when # uploaded to crates.io (aka this is not markdown) description = """ Support for the jaffi code generator. """ # These URLs point to more information about the repository documentation = "https://docs.rs/jaffi" homepage = "https://github.com/bluejekyll/jaffi#readme" repository = "https://github.com/bluejekyll/jaffi" # This points to a file in the repository (relative to this Cargo.toml). The # contents of this file are stored and indexed in the registry. readme = "../README.md" # This is a small list of keywords used to categorize and search for this # package. keywords = ["Java", "JVM", "JNI"] categories = ["External FFI bindings"] # This is a string description of the license for this package. Currently # crates.io will validate the license provided against a whitelist of known # license identifiers from http://spdx.org/licenses/. Multiple licenses can # be separated with a `/` license = "MIT/Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] jni = "0.19.0"