aboutsummaryrefslogtreecommitdiff
path: root/vendor/clap_builder/src/builder/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/clap_builder/src/builder/mod.rs')
-rw-r--r--vendor/clap_builder/src/builder/mod.rs67
1 files changed, 0 insertions, 67 deletions
diff --git a/vendor/clap_builder/src/builder/mod.rs b/vendor/clap_builder/src/builder/mod.rs
deleted file mode 100644
index 320a453..0000000
--- a/vendor/clap_builder/src/builder/mod.rs
+++ /dev/null
@@ -1,67 +0,0 @@
-//! Define [`Command`] line [arguments][`Arg`]
-
-mod action;
-mod app_settings;
-mod arg;
-mod arg_group;
-mod arg_predicate;
-mod arg_settings;
-mod command;
-mod ext;
-mod os_str;
-mod possible_value;
-mod range;
-mod resettable;
-mod str;
-mod styled_str;
-mod value_hint;
-mod value_parser;
-
-#[cfg(debug_assertions)]
-mod debug_asserts;
-
-#[cfg(test)]
-mod tests;
-
-pub mod styling;
-
-pub use self::str::Str;
-pub use action::ArgAction;
-pub use arg::Arg;
-pub use arg_group::ArgGroup;
-pub use arg_predicate::ArgPredicate;
-pub use command::Command;
-pub use os_str::OsStr;
-pub use possible_value::PossibleValue;
-pub use range::ValueRange;
-pub use resettable::IntoResettable;
-pub use resettable::Resettable;
-pub use styled_str::StyledStr;
-pub use styling::Styles;
-pub use value_hint::ValueHint;
-pub use value_parser::_AutoValueParser;
-pub use value_parser::via_prelude;
-pub use value_parser::BoolValueParser;
-pub use value_parser::BoolishValueParser;
-pub use value_parser::EnumValueParser;
-pub use value_parser::FalseyValueParser;
-pub use value_parser::MapValueParser;
-pub use value_parser::NonEmptyStringValueParser;
-pub use value_parser::OsStringValueParser;
-pub use value_parser::PathBufValueParser;
-pub use value_parser::PossibleValuesParser;
-pub use value_parser::RangedI64ValueParser;
-pub use value_parser::RangedU64ValueParser;
-pub use value_parser::StringValueParser;
-pub use value_parser::TryMapValueParser;
-pub use value_parser::TypedValueParser;
-pub use value_parser::UnknownArgumentValueParser;
-pub use value_parser::ValueParser;
-pub use value_parser::ValueParserFactory;
-pub use value_parser::_AnonymousValueParser;
-
-#[allow(unused_imports)]
-pub(crate) use self::str::Inner as StrInner;
-pub(crate) use action::CountType;
-pub(crate) use arg_settings::{ArgFlags, ArgSettings};
-pub(crate) use command::AppTag;