diff options
Diffstat (limited to 'mingling_core/src/comp.rs')
| -rw-r--r-- | mingling_core/src/comp.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mingling_core/src/comp.rs b/mingling_core/src/comp.rs index 4fb17c7..fd26e1b 100644 --- a/mingling_core/src/comp.rs +++ b/mingling_core/src/comp.rs @@ -2,11 +2,17 @@ mod flags; mod shell_ctx; mod suggest; +#[cfg(feature = "builds")] +mod installation; + use std::collections::BTreeSet; use std::fmt::Display; #[doc(hidden)] pub use flags::*; +#[cfg(feature = "builds")] +#[doc(hidden)] +pub use installation::*; #[doc(hidden)] pub use shell_ctx::*; #[doc(hidden)] |
