diff options
| author | Weicao-CatilGrass <1992414357@qq.com> | 2026-05-11 19:56:10 +0800 |
|---|---|---|
| committer | Weicao-CatilGrass <1992414357@qq.com> | 2026-05-11 19:56:10 +0800 |
| commit | e42567b25093907cfd939edc92ace94a5d59b398 (patch) | |
| tree | f2514fdd18277b5620b0fd6512cfc95569cfce15 /mingling_core/src/comp.rs | |
| parent | 99d5a62aa3655f8676021a9bf70af3d12c9457bc (diff) | |
Add `builds` feature and install completion scripts
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)] |
