From 129db88422d04745a220333663d76337c659eb65 Mon Sep 17 00:00:00 2001 From: Spencer Wilson <5624115+spencerwilson@users.noreply.github.com> Date: Wed, 26 Jan 2022 20:33:47 -0800 Subject: [PATCH 1/2] refactor: Resolve compiler warning --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 209a230..b6ef11f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,11 +6,11 @@ use structopt::StructOpt; use electionguard_verify::check; use electionguard_verify::schema; +#[derive(StructOpt)] #[structopt( name = "electionguard_verify", about = "Verify the results of an election." )] -#[derive(StructOpt)] struct Options { /// The path to the JSON file containing the election results. /// We read from STDIN if not present. From a55d88c679647ba7a0e2758c148844c89f95bd7b Mon Sep 17 00:00:00 2001 From: Spencer Wilson <5624115+spencerwilson@users.noreply.github.com> Date: Wed, 26 Jan 2022 21:05:16 -0800 Subject: [PATCH 2/2] empty