Rust implementation of NeutronDB, LSM-tree Key-Value Store.
```
neutrondb = "0.9.10"
```
```
use neutrondb::store;
```
```
let mut accs = store("accs")?;
```
```
let k: String = String::from("user_1");
let v: String = String::from("bal_1");
accs.put((k, v))?;
```
```
let v: String = accs.get("user_1")?;
```
```
accs.delete("user_1")?;
```
Any interested party can contact me through email at itsmereystar@protonmail.com