librarium 0.5.0

Library for the reading, creating, and modification of cpio file systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

/// Errors generated from library
#[derive(Error, Debug)]
pub enum CpioError {
    #[error("std io error: {0}")]
    StdIo(#[from] no_std_io2::io::Error),

    #[error("deku error: {0:?}")]
    Deku(#[from] deku::DekuError),
}