wpress-oxide build Rust Report Card

A rust library to interact with the wpress archive format.

Quick start

To get started, add this library to your project.

cargo add --git https://github.com/lavafroth/wpress-oxide

Extracting a wpress archive

```rust use wpress_oxide::Reader; use std::error::Error;

fn main() -> Result<(), Box> { let reader = Reader::new("thearchivename.wpress")?; reader.extract()?; Ok(()) } ```