scsys-util 0.3.2

scsys is a collection of primitives and utilities for use throughout the ecosystem.
Documentation
/*
    Appellation: scsys-utils <library>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # `scsys-utils`
//!
//! utilities for the `scsys` ecosystem
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(all(feature = "alloc", feature = "nightly"), feature(allocator_api))]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/scattered-systems/.github/main/assets/logo.png",
    html_favicon_url = "https://raw.githubusercontent.com/scattered-systems/.github/main/assets/favicon.ico"
)]

#[cfg(feature = "alloc")]
extern crate alloc;

#[doc(inline)]
pub use self::prelude::*;

#[cfg(feature = "fs")]
pub mod fs;
#[cfg(feature = "std")]
pub mod project;
pub mod str;

pub mod prelude {
    #[doc(inline)]
    #[cfg(feature = "fs")]
    pub use crate::fs::*;
    #[doc(inline)]
    #[cfg(feature = "std")]
    pub use crate::project::*;
    #[doc(inline)]
    pub use crate::str::prelude::*;
}