kv_cab 0.3.1

Simple Persistent HashMap
docs.rs failed to build kv_cab-0.3.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: kv_cab-0.6.0

kv_cab

Simple persistent HashMap

Usage:

let cab = KV::<Value>::new("./db.cab");
let _ = cab.insert("key".to_string(), Value::String("value".to_string()));
cab.get("key".to_string());
let _ = cab.remove("key".to_string())