From a990de90fe41456a23e58bd087d2f107d321f3a1 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 19 Jul 2024 16:37:58 +0400 Subject: Deleted vendor folder --- vendor/clap/src/bin/stdio-fixture.rs | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 vendor/clap/src/bin/stdio-fixture.rs (limited to 'vendor/clap/src/bin/stdio-fixture.rs') diff --git a/vendor/clap/src/bin/stdio-fixture.rs b/vendor/clap/src/bin/stdio-fixture.rs deleted file mode 100644 index efd6c81..0000000 --- a/vendor/clap/src/bin/stdio-fixture.rs +++ /dev/null @@ -1,26 +0,0 @@ -fn main() { - #[allow(unused_mut)] - let mut cmd = clap::Command::new("stdio-fixture") - .version("1.0") - .long_version("1.0 - a2132c") - .arg_required_else_help(true) - .subcommand(clap::Command::new("more")) - .arg( - clap::Arg::new("verbose") - .long("verbose") - .help("log") - .action(clap::ArgAction::SetTrue) - .long_help("more log"), - ); - #[cfg(feature = "color")] - { - use clap::builder::styling; - let styles = styling::Styles::styled() - .header(styling::AnsiColor::Green.on_default() | styling::Effects::BOLD) - .usage(styling::AnsiColor::Green.on_default() | styling::Effects::BOLD) - .literal(styling::AnsiColor::Blue.on_default() | styling::Effects::BOLD) - .placeholder(styling::AnsiColor::Cyan.on_default()); - cmd = cmd.styles(styles); - } - cmd.get_matches(); -} -- cgit v1.2.3