1use clap::Args;
23/// Arguments for the `verify` command.
4#[derive(Debug, Clone, Args)]
5pub struct VerifyArgs {
6/// Identify all functions annotated with #[rapx::verify] and print each target, its unsafe callees, and their safety contracts.
7#[arg(long)]
8pub prepare_targets: bool,
9}