Rust implementation of NeutronDB, LSM-tree Key-Value Store.
```
neutrondb = "0.9.13"
```
```
use neutrondb::store;
```
```
let mut accs = store("accs")?;
```
```
let key: String = String::from("user_1");
let value: String = String::from("bal_1");
accs.put((key, value))?;
```
```
let value: String = accs.get("user_1")?;
```
```
let values: Vec<(String, String)> = accs.get_all()?;
```
```
accs.delete("user_1")?;
```
Any interested party can contact me through twitter @itsmereystar or email at itsmereystar@protonmail.com