Distributed, scalable database. To be implemented.
extern crate hyperdb;
use std::path::PathBuf;
let location = PathBuf::from("./my.db");
let db = hyperdb::HyperDb::new(location);
db.put("/hello", b"world").unwrap();
let nodes = db.get("/hello").unwrap();
println!("/hello --> {}", nodes[0].value);
$ cargo add hyperdb
MIT OR Apache-2.0