Rust Implementation of NeutronDB, LSM-Tree String Key-Value Store.
```
neutrondb = "0.9.16"
```
```
use neutrondb::Store;
```
```
let mut accs = Store::new("accs")?;
```
```
accs.put("user1", "balance1")?;
```
```
let balance1: String = accs.get("user1")?;
```
```
let accounts: Vec<(String, String)> = accs.get_all()?;
```
```
accs.delete("user1")?;
```
Any interested party can contact me on twitter @itsmereystar or email itsmereystar@protonmail.com
2021-09-11