bitask 0.1.1

Bitask is a Rust implementation of Bitcask, a log-structured key-value store optimized for high-performance reads and writes.
Documentation
1
2
3
4
5
6
7
use bitask::Bitask;
use clap::Parser;

fn main() -> anyhow::Result<()> {
    let cli = Bitask::parse();
    cli.exec()
}