modcrawl 0.4.0

Detect, inspect, and analyze Minecraft mods and plugins from JAR files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "cli")]
pub mod cmd;
pub mod core;
pub mod error;
pub mod ffi;

// ── Re-exports ──────────────────────────────────────────────────────────────

pub use core::dep::types::DepKind;
pub use core::dep::types::VersionRange;
pub use core::dep::{analyze, analyze_reader, DepEntry, DepReport, JarInJar};
pub use core::detect_mod_type::ModType;
pub use core::identify::{identify, identify_reader};
pub use core::metadata::{read_metadata, read_metadata_reader, ModMetadata};
pub use error::{Error, Result};

#[cfg(feature = "classfile")]
pub use core::classfile::{ClassEntry, DupEntry, GrepMatch, MixinEntry};