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
16#[cfg(feature = "fs")]
17pub mod fs;
18pub mod str;
19
20#[allow(unused_imports)]
21pub mod prelude {
22 pub use crate::str::prelude::*;
23}