[package] name = "jni-simple" version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" authors = ["Alexander Schütz "] keywords = ["jni", "java", "ffi"] categories = ["api-bindings"] description = "Simple Rust wrapper around the JNI (Java Native Interface) API." readme = "README.md" repository = "https://github.com/AlexanderSchuetz97/jni-simple" exclude = [ "example_project/*", "loop_test.sh" ] [package.metadata.docs.rs] all-features = true [dependencies] libloading = { version = "^0.8.5", optional = true } sync-ptr = "^0.1.1" once_cell = "^1.20.2" [dev-dependencies] static_assertions = "1.1.0" [features] asserts = [] loadjvm = ["libloading"]