karsher 0.1.1

karsher is a dumb cache written in rust
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use nom::{
    branch::alt,
    bytes::complete::{tag_no_case, take_while, take_while1},
    character::complete::{multispace0, multispace1},
    combinator::{map, rest, cut, opt, verify},
    multi::many0,
    sequence::{delimited, pair, preceded},
    IResult, Parser,
};
pub use std::{
    collections::{BTreeMap, HashMap},
    io::stdout,
};