modcrawl 0.2.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
use std::sync::LazyLock;

use crate::core::registry::Registry;

pub static REGISTRY: LazyLock<Registry> = LazyLock::new(|| {
    let mut r = Registry::new();
    loaders::register_all(&mut r);
    r
});

pub mod dep;
pub mod detect_mod_type;
pub mod identify;
pub mod loaders;
pub mod metadata;
pub mod registry;