mokapot 0.4.0

JVM analysis library
docs.rs failed to build mokapot-0.4.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: mokapot-0.20.2

MokaPot

Cargo Build & Test Crates.io docs.rs

MokaPot is a Java byte code analysis library to facilitate my research.

[!WARNING] API Stability: This project is in an early development stage and breaking changes can happen before v1.0.0. Documentations are incomplete, which will be added when the basic functionalities works. Using this project for production is currently NOT RECOMMENDED.

Usage

Adding the dependency

To use the latest development version, add the following line to the [dependencies] section in your Cargo.toml.

mokapot = { git = "https://github.com/henryhchchc/mokapot.git" }

Before building your project, run cargo update to fetch the latest commit.

Parsing a class

use mokapot::elements::Class;

let reader: std::io::Read = todo!("Some reader for the byte code");
let class = Class::from_reader(reader)?;