From 9990141d40e49eeb0d9ac6a323d4ff72dfbb204b Mon Sep 17 00:00:00 2001 From: "Jan Alexander Steffens (heftig)" Date: Thu, 26 Dec 2019 03:00:51 +0100 Subject: [PATCH] Ignore a warning from inside the clap macros --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index e2a5c3b..cf10ddd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -93,6 +93,7 @@ impl FromStr for LevelSizes { } fn main() { + #[allow(deprecated)] let matches = App::new(crate_name!()) .version(crate_version!()) .author(crate_authors!("\n"))