cipherstash-cli 0.3.0

The official CLI for CipherStash.
use async_trait::async_trait;
use clap::crate_version;
use std::u8;

use crate::stash_command::StashCommand;
use crate::Cli;

pub(crate) struct Version {}

#[async_trait(?Send)]
impl StashCommand for Version {
    async fn execute(&self, _cli: &Cli) -> u8 {
        println!("{}", crate_version!());
        0
    }
}