Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.53 KB

README.md

File metadata and controls

49 lines (41 loc) · 1.53 KB

Build Status codecov Generic badge Generic badge Generic badge License: MIT

Welcome!

anna is a Command Line Utility and Library for interacting with the anna key-value store.

Installing

anna is published to crates.io so the binary can be installed using:

> cargo install anna

Running

You can get the available commands and usage options by running:

> anna --help

Using the library

Add annalib as a dependency to your project's Cargo.toml as usual:

annalib = "0.1.0"

Building Yourself

Clone the repo

From your command line:

git clone https://github.com/andrewdavidmackenzie/anna.git

Build

Go into the cli subdirectory and build using cargo

> cd anna/cli
> cargo build

Run

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)