bazof 0.1.0

Lakehouse format with event time travel
Documentation
use arrow::error::ArrowError;
use chrono::ParseError;
use std::string::FromUtf8Error;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum BazofError {
    #[error("IO error: {0}")]
    Arrow(#[from] ArrowError),
    #[error("Parsing error: {0}")]
    ParseInt(#[from] std::num::ParseIntError),
    #[error("DateTime parsing error: {0}")]
    ParseChrono(#[from] ParseError),
    #[error("Parquet file error: {0}")]
    ParquetFile(#[from] parquet::errors::ParquetError),
    #[error("Json error: {0}")]
    JsonError(#[from] serde_json::error::Error),
    #[error("Store error: {0}")]
    StoreError(#[from] object_store::Error),
    #[error("Utf8 error: {0}")]
    Utf8Error(#[from] FromUtf8Error),
    #[error("Value was None")]
    NoneValue,
}