perkv ===== [![crates.io version](https://img.shields.io/crates/v/perkv.svg)](https://crates.io/crates/perkv) [![Build status](https://travis-ci.org/mount-tech/perkv.svg?branch=master)](https://travis-ci.org/mount-tech/perkv) [![Documentation](https://docs.rs/perkv/badge.svg)](https://docs.rs/perkv) [License](LICENSE.md) Simple persistent generic HashMap/Key-value store, using the Persy Index API. This is in a beta state at the moment. Basic usage: ```rust let test_store = perkv::KV::::new("./basic.cab").unwrap(); let _ = test_store.insert("key", "value"); println!("{:?}", test_store.get("key")); let _ = test_store.remove("key"); ```