anna
is a Command Line Utility and Library for interacting with the anna
key-value store.
anna
is published to crates.io so the binary can be installed using:
> cargo install anna
You can get the available commands and usage options by running:
> anna --help
Add annalib
as a dependency to your project's Cargo.toml
as usual:
annalib = "0.1.0"
From your command line:
git clone https://github.com/andrewdavidmackenzie/anna.git
Go into the cli
subdirectory and build using cargo
> cd anna/cli
> cargo build
Check it works by displaying the help message:
> cargo run -- --help
(the --
marks the end of options to cargo
and the start of options to pass to anna
)