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
use zipcrawl::ZipManager;

use super::super::super::dep::types::DepEntry;
use crate::error::Result;

#[allow(clippy::unnecessary_wraps)]
pub fn extract(_: &mut ZipManager) -> Result<Vec<DepEntry>> {
    Ok(Vec::new())
}