• Home
Name Date Size #Lines LOC

..--

.github/06-Sep-2024-149119

0.20.0/06-Sep-2024-9,4006,453

benches/06-Sep-2024-437353

docs/06-Sep-2024-327212

example/06-Sep-2024-13166

patches/06-Sep-2024-2019

src/06-Sep-2024-9,0245,237

tests/06-Sep-2024-2,2951,767

.cargo_vcs_info.jsonD06-Sep-202494 66

.gitignoreD06-Sep-2024127 1310

Android.bpD06-Sep-20241.6 KiB7166

CHANGELOG.mdD06-Sep-202423.1 KiB334265

CODE_OF_CONDUCT.mdD06-Sep-20243.1 KiB7455

CONTRIBUTING.mdD06-Sep-20245 KiB166112

Cargo.tomlD06-Sep-20241.7 KiB8365

Cargo.toml.origD06-Sep-20241 KiB4941

LICENSED06-Sep-202410.6 KiB202169

LICENSE-APACHED06-Sep-202410.6 KiB202169

LICENSE-MITD06-Sep-20241.1 KiB2217

METADATAD06-Sep-2024570 2119

MODULE_LICENSE_APACHE2D06-Sep-20240

OWNERSD06-Sep-202445 21

README.mdD06-Sep-20241.1 KiB3522

TEST_MAPPINGD06-Sep-2024217 1413

cargo_embargo.jsonD06-Sep-2024209 1413

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