aboutsummaryrefslogtreecommitdiff
path: root/mingling_picker/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_picker/src/lib.rs')
-rw-r--r--mingling_picker/src/lib.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/mingling_picker/src/lib.rs b/mingling_picker/src/lib.rs
index 7e48db7..afc7aca 100644
--- a/mingling_picker/src/lib.rs
+++ b/mingling_picker/src/lib.rs
@@ -6,14 +6,16 @@ pub use picker::*;
mod pickable;
pub use pickable::*;
-mod flag;
-pub use flag::*;
+mod arg;
+pub use arg::*;
mod infos;
pub use infos::*;
pub mod parselib;
+pub mod value;
+
pub mod prelude {
pub use crate::IntoPicker;
}
@@ -24,7 +26,7 @@ pub mod macros {
/// Provides the types necessary for implementing the `Pickable` trait
pub mod pickable_needed {
- pub use crate::{Pickable, PickerArgResult, PickerFlag, PickerFlagAttr, TagPhaseContext};
+ pub use crate::{Pickable, PickerArg, PickerArgAttr, PickerArgResult, TagPhaseContext};
}
/// Provides the types necessary for implementing the `Matcher` trait
@@ -36,5 +38,6 @@ pub mod matcher_needed {
#[cfg(feature = "mingling_support")]
mod corebind;
+#[allow(unused_imports)]
#[cfg(feature = "mingling_support")]
pub use corebind::*;