Rust Implementation of NeutronDB, A String Key-Value Store.
```
neutrondb = "0.9.14"
```
```
use neutrondb::store;
```
```
let mut accs = store("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-10