useclap::Parser;#[derive(Parser)]pubstructArgs{/// Stringified JSON containing the SemVer-Release Config.
pubconfig_json: String,
/// Stringified JSON containing the new version information from SemVer-Release.
pubversion: String,
/// The Log Level to use for the logger.
publog_level: String,
/// Whether or not the version was updated.
pubupdated: String,
/// Flag specifying whether to do dry run publish.
#[arg(short, long, default_value ="false")]pubdry_run: String,
}