cryptr 0.10.0

simple encrypted (streaming) values
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use cryptr::CryptrError;

#[cfg(feature = "cli")]
mod cli;

#[tokio::main]
async fn main() -> Result<(), CryptrError> {
    #[cfg(feature = "cli")]
    if let Err(err) = cli::run().await {
        eprintln!("{}", err.as_str());
    }
    Ok(())
}