emet 1.0.1

A lightweight file integrity and digital signature library powered by the Tequel hashing primitive. Fast, local-first, and designed for long-term data truth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Parser;

use crate::cli::commands::Commands;

#[derive(Parser, Debug)]
#[command(author = "Gabriel 'dotxav' Xavier")]
#[command(version = env!("CARGO_PKG_VERSION"))]
#[command(about = None)]
#[command(long_about = None)]
pub struct Args {
    #[command(subcommand)]
    pub command: Commands
}