tiny-std 0.3.2

Tiny rust stdlib for linux
Documentation
#![cfg_attr(not(test), no_std)]
#![warn(clippy::pedantic)]
#![expect(clippy::let_underscore_untyped, clippy::module_name_repetitions)]
#[cfg(feature = "alloc")]
extern crate alloc;

pub use error::{Error, Result};
pub use rusl::error::Errno;
pub use rusl::string::unix_str::*;
pub use rusl::unix_lit;
pub use rusl::Error as RuslError;

#[cfg(feature = "allocator-provided")]
pub mod allocator;
pub mod elf;
#[cfg(feature = "start")]
pub mod env;
mod error;
pub mod fs;
pub mod io;
pub mod linux;
pub mod net;
pub mod process;
pub(crate) mod sock;
#[cfg(feature = "start")]
pub mod start;
pub mod sync;
pub mod thread;
pub mod time;
pub mod unix;