scsys_xtask/
lib.rs

1/*
2    Appellation: scsys-xtask <library>
3    Contrib: @FL03
4*/
5//! # scsys-xtask
6//! 
7//! The `scsys-xtask` library provides a common set of primitives and utilities for building 
8//! and managing projects in the `scsys` ecosystem.
9#![crate_name = "scsys_xtask"]
10#![crate_type = "lib"]
11
12#[doc(inline)]
13pub use self::error::*;
14
15#[cfg(feature = "cli")]
16pub mod cli;
17pub mod error;
18pub mod pipes;
19
20pub mod prelude {
21    #[cfg(feature = "cli")]
22    pub use crate::cli::prelude::*;
23    pub use crate::error::*;
24    pub use crate::pipes::prelude::*;
25
26}