pearl 0.21.0

Pearl is a low level blob-based I/O library
Documentation
pub(crate) mod blob_reader;
pub(crate) mod blob_writer;
pub(crate) mod collectors;
/// Error type defenition
pub mod error;
pub(crate) mod migration;
pub(crate) mod utils;
pub(crate) mod validation;

pub use collectors::*;
pub use migration::*;
pub use utils::*;
pub use validation::*;

pub(crate) mod prelude {
    pub(crate) use super::blob_reader::*;
    pub(crate) use super::blob_writer::*;
    pub(crate) use super::error::*;
    pub(crate) use super::utils::*;
    pub(crate) use super::validation::*;
    pub(crate) use crate::prelude::*;
    pub(crate) use anyhow::{Context, Result as AnyResult};
    pub(crate) use std::{
        fmt::Debug,
        fs::{File, OpenOptions},
        io::{Read, Seek, SeekFrom, Write},
        path::Path,
    };
}