1//! A Rust library for handling JAR (Java ARchive) files. 2pub mod error; 3pub mod jarfile; 4pub use crate::jarfile::JarFile;