1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::{Context, Result};
use clap::Parser;
use preprocessing_mpsi_with_vole::cli_utils::PrePSIArgs;
use preprocessing_mpsi_with_vole::preprocessed::psi::run;

fn main() -> Result<()> {
    let args = PrePSIArgs::parse();

    println!("{:?}", args);

    run(args).with_context(|| "Failed to run the protocol.")?;

    Ok(())
}