Rust implementation of NeutronDB, a Log-Structured Merge-tree Key-Value Store serialized as Stellar Notation Objects.
```
neutrondb = "0.9.2" stellar-notation = "0.9.3"
```
```
use neutrondb::store;
use stellar_notation::{ StellarObject, StellarValue };
```
```
let mut my_store = store("my").unwrap();
```
```
let key: String = String::from("key_1");
let value: StellarValue = StellarValue::String(String::from("value_1"));
let object: StellarObject = StellarObject(key, value);
store.put(object).unwrap();
```
```
let object: StellarObject = store.get("key_1").unwrap();
let value: StellarValue = object.1;
match value { StellarValue::String(val) => println!(" * value: {}", val); _ => (); }
```
```
store.delete("key_1").unwrap();
```
Any interested party can contact me through email at itsmereystar@protonmail.com