okane 0.5.3

CLI tool to support Ledger (https://www.ledger-cli.org/) usecases. Curently it provides import feature.
Documentation
use ::csv::Error as CsvError;
use ::regex::Error as RegexError;

#[derive(thiserror::Error, Debug)]
pub enum ImportError {
    #[error("failed to perform IO")]
    IO(#[from] std::io::Error),
    #[error("failed to parse CSV")]
    CSV(#[from] CsvError),
    #[error("failed to parse XML")]
    XML(#[from] quick_xml::DeError),
    #[error("failed to parse YAML")]
    YAML(#[from] serde_yaml::Error),
    #[error("failed to parse VISECA file: {0}")]
    Viseca(String),
    #[error("invalid flag {0}")]
    InvalidFlag(&'static str),
    #[error("invalid config {0}")]
    InvalidConfig(&'static str),
    #[error("invalid datetime")]
    InvalidDatetime(#[from] chrono::ParseError),
    #[error("invalid decimal")]
    InvalidDecimal(#[from] rust_decimal::Error),
    #[error("invalid regex")]
    InvalidRegex(#[from] RegexError),
    #[error("other error: {0}")]
    Other(String),
    #[error("unimplemented: {0}")]
    Unimplemented(&'static str),
    #[error("unknown format")]
    UnknownFormat,
}