mokapot

Crates.iomokapot
lib.rsmokapot
version0.17.0
sourcesrc
created_at2023-08-07 10:07:20.699475
updated_at2024-09-19 09:58:49.136035
descriptionA library for ananlyzing JVM bytecode
homepage
repositoryhttps://github.com/henryhchchc/mokapot
max_upload_size
id937802
size476,756
Henry Chu (henryhchchc)

documentation

https://docs.rs/mokapot

README

MokaPot

GitHub Repository CI - GitHub Actions Codecov Crates.io docs.rs Contributor Covenant

MokaPot is a Java bytecode analysis library written in Rust.

[!WARNING] API Stability: This project is in an early development stage and breaking changes can happen before v1.0.0. Using this project for production is currently NOT RECOMMENDED.

Documentation

The documentation of the released version is available at docs.rs. The documentation of the latest commit is available at github.io

Usage

Adding the dependency

Run the following command in the root directory of your project.

cargo add mokapot

Alternatively, to follow the latest commit version, run the following command instead. Before building your project, run cargo update to fetch the latest commit.

cargo add --git https://github.com/henryhchchc/mokapot.git mokapot

Parsing a class

use mokapot::jvm::class::Class;

fn parse_class() -> Result<Class, Box<dyn std::error::Error>> {
    let reader: std::io::Read = todo!("Some reader for the byte code");
    let class = Class::from_reader(reader)?;
    Ok(class)
}

MokaIR

MokaIR is an intermediate representation of JVM bytecode in mokapot. To learn more, please refer to docs/MokaIR.md

Building

Make sure you have the following tools installed:

  • The latest stable version of Rust
  • The latest release version of JDK

Compile the project and run the tests with the following command.

cargo build --all-features
cargo test --all-features

Contributing

Cool. Contributions are welcomed. See the contribution guide for more information.

Commit count: 591

cargo fmt