From 5e5760d154ef6bbf6c09a9af3527439915ba27fb Mon Sep 17 00:00:00 2001 From: yas99en Date: Fri, 11 Mar 2022 23:59:06 +0900 Subject: [PATCH] removed proxy arg group --- src/cmd/app.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/cmd/app.rs b/src/cmd/app.rs index e4630f0..b74b7ad 100644 --- a/src/cmd/app.rs +++ b/src/cmd/app.rs @@ -87,15 +87,6 @@ fn proxy_args(app: App<'static, 'static>) -> App<'static, 'static> { .help("The domain name of the https proxy") .required_if("proxy-scheme", "https"), ) - .group(ArgGroup::with_name("proxy").args( - &[ - "proxy-host", - "proxy-scheme", - "proxy-credentials", - "proxy-https-domain", - "proxy-https-cafile", - ][..], - )) } else { app.group( ArgGroup::with_name("proxy")