Rust implementation of NeutronDB, a Log-Structured Merge-tree Key-Value Store using Stellar Notation to Serialize and Encode Data.
neutrondb = "0.9.0"
stellar-notation = "0.9.0"
use neutrondb;
use stellar_notation::StellarObject;
use stellar_notation::StellarValue;
let mut store = neutrondb::store("my_store").unwrap();
let key: String = String::from("key_1");
let value: StellarValue = StellarValue::StringType(String::from("value_1"));
let object: StellarObject = StellarObject(key, value);
store.put(object).unwrap();
Any interested party can contact me through email at itsmereystar@protonmail.com