aoc-cache 0.2.2

A way of caching your input from the great and popular Advent of Code
Documentation
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("url parse error")]
    UrlParse(#[from] url::ParseError),
    #[error("invalid cookie error")]
    InvalidCookie(String),
    #[error("cookie parse error")]
    CookieParse(String),
    #[error("ureq error")]
    UreqError(#[from] ureq::Error),
    #[error("io error")]
    Io(#[from] std::io::Error),
    #[error("duplicate error")]
    Duplicate(String),
    #[error("path error")]
    Path(String),
    #[error("parse error")]
    Parse(String),
}