libarchive2 0.2.1

Safe Rust bindings for libarchive v3.8.1, providing cross-platform archive reading and writing capabilities
Documentation
1
2
3
4
5
6
7
//! Example: Display libarchive version information

fn main() {
    println!("libarchive version: {}", libarchive2::version());
    println!("Version number: {}", libarchive2::version_number());
    println!("\nDetails:\n{}", libarchive2::version_details());
}