scsys_util/
lib.rs

1/*
2    Appellation: scsys-utils <library>
3    Contrib: FL03 <jo3mccain@icloud.com>
4*/
5//! # Utils
6//!
7#![cfg_attr(not(feature = "std"), no_std)]
8
9#[cfg(feature = "alloc")]
10extern crate alloc;
11
12#[cfg(feature = "alloc")]
13#[doc(inline)]
14pub use self::str::*;
15
16pub mod str;
17
18#[allow(unused_imports)]
19pub mod prelude {
20    pub use crate::str::prelude::*;
21}