Konpeito is a personal key-value store database that can be used to store anything.
It is written in Rust and is powered by sled
. And is created as an offline replacement for Skate.
It works by storing data inside a sled database, encrypted using a key (using the private SSH key by default).
To store items:
bash
konpeito set key value
If you want to store a file or something from stdin:
bash
konpeito set key < file
To retrieve items:
bash
konpeito get key
To delete keys:
bash
konpeito delete key
To list all keys:
bash
konpeito list
Simply install this crate
From source:
bash
cargo install --path .
From crates.io:
bash
cargo install konpeito