rskey
rskey is a simple key-value store of strings, with a basic CLI tool to list, get, and set key-value pairs.
CLI installation
CLI usage
rskey expects to find a data file named store.kv in the current directory. If there is no such file, one will be created as soon as you set a key.
Listing all data
key1: value1
key2: value2
Getting a value by key
key1: value1
Setting a key-value pair
Crate usage
Example:
use Store;
let mut s = open_or_create;
s.set?;
assert_eq!;