oneseed 0.5.2

Deterministic cryptographic keys from a single seed
mod age;
mod cli;
mod derive;
mod password;
mod seed;
mod sign;
mod ssh;
mod update;

use std::process::ExitCode;

fn main() -> ExitCode {
    match cli::run() {
        Ok(()) => ExitCode::SUCCESS,
        Err(e) => {
            eprintln!("error: {e}");
            ExitCode::FAILURE
        }
    }
}