diff options
Diffstat (limited to 'mingling_picker/src/lib.rs')
| -rw-r--r-- | mingling_picker/src/lib.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mingling_picker/src/lib.rs b/mingling_picker/src/lib.rs index ffa6e13..0ade673 100644 --- a/mingling_picker/src/lib.rs +++ b/mingling_picker/src/lib.rs @@ -29,8 +29,13 @@ pub mod value; /// use mingling_picker::prelude::*; /// ``` pub mod prelude { - pub use crate::IntoPicker; pub use crate::macros::arg; + + #[cfg(not(feature = "mingling_support"))] + pub use crate::IntoPicker; + + #[cfg(feature = "mingling_support")] + pub use crate::corebind::EntryPicker; } /// Re-export of the `mingling_picker_macros` crate |
