From 66113be0cad7dfd3a0d43c3637f37483b9d9cf27 Mon Sep 17 00:00:00 2001 From: Adrian Wannenmacher Date: Sun, 24 Sep 2023 08:06:15 +0200 Subject: [PATCH] make roots required --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index d53433f..ec68b55 100644 --- a/src/main.rs +++ b/src/main.rs @@ -48,6 +48,7 @@ struct Args { pub raw: bool, /// The roots to use for discovery. + #[clap(required = true)] pub roots: Vec, }