summaryrefslogtreecommitdiffstats
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.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/vendor/clap_builder/src/builder/mod.rs b/vendor/clap_builder/src/builder/mod.rs
index 098ad576e..495c84587 100644
--- a/vendor/clap_builder/src/builder/mod.rs
+++ b/vendor/clap_builder/src/builder/mod.rs
@@ -7,6 +7,7 @@ mod arg_group;
mod arg_predicate;
mod arg_settings;
mod command;
+mod ext;
mod os_str;
mod possible_value;
mod range;
@@ -34,6 +35,8 @@ pub use range::ValueRange;
pub use resettable::IntoResettable;
pub use resettable::Resettable;
pub use styled_str::StyledStr;
+#[cfg(feature = "unstable-styles")]
+pub use styled_str::Styles;
pub use value_hint::ValueHint;
pub use value_parser::_AutoValueParser;
pub use value_parser::via_prelude;
@@ -58,3 +61,6 @@ pub use value_parser::_AnonymousValueParser;
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;
+#[cfg(not(feature = "unstable-styles"))]
+pub(crate) use styled_str::Styles;