• Home
Name Date Size #Lines LOC

..--

benches/06-Sep-2024-367301

example/06-Sep-2024-13166

src/06-Sep-2024-5,9593,805

tests/06-Sep-2024-1,6691,300

Android.bpD06-Sep-2024854 4037

CHANGELOG.mdD06-Sep-202412.3 KiB265204

CODE_OF_CONDUCT.mdD06-Sep-20243.1 KiB7455

CONTRIBUTING.mdD06-Sep-20245 KiB166112

Cargo.tomlD06-Sep-20241.2 KiB5645

Cargo.toml.origD06-Sep-2024708 3932

LICENSED06-Sep-202410.6 KiB202169

LICENSE-APACHED06-Sep-202410.6 KiB202169

LICENSE-MITD06-Sep-20241.1 KiB2217

METADATAD06-Sep-2024582 2422

MODULE_LICENSE_APACHE2D06-Sep-20240

OWNERSD06-Sep-202445 21

README.mdD06-Sep-20241.1 KiB3522

build.rsD06-Sep-20243.6 KiB11074

cargo_embargo.jsonD06-Sep-2024129 98

clippy.tomlD06-Sep-2024109 32

test_profileD06-Sep-2024843 2512

README.md

1[![Build Status](https://github.com/jni-rs/jni-rs/workflows/CI/badge.svg)](https://github.com/jni-rs/jni-rs/actions)
2[![Docs](https://docs.rs/jni/badge.svg)](https://docs.rs/jni)
3[![Crates.io](https://img.shields.io/crates/v/jni.svg)](https://crates.io/crates/jni)
4
5# JNI Bindings for Rust
6
7[![Join the chat at https://gitter.im/jni-rs/Lobby](https://badges.gitter.im/jni-rs/Lobby.svg)](https://gitter.im/jni-rs/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
8
9This project provides complete JNI bindings for Rust, allowing to:
10
11- Implement native Java methods for JVM and Android in Rust
12- Call Java code from Rust
13- Embed JVM in Rust applications and use any Java libraries
14
15See the [docs](https://docs.rs/jni) for more details.
16
17## Example
18```
19cd example
20make
21```
22
23## Contribution
24
25See the [Contribution Guide](CONTRIBUTING.md) for details.
26
27
28## License
29
30Licensed under either of
31
32 * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
33 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
34at your option.
35