alloc_ext/lib.rs
1//! This crate is an extension of [Rust`s dependency-free alloc library].
2//!
3//! All modules present in Rust's default library are are mirrored in this library. Module names
4//! are suffixed with a `-ext` to avoid conflicts with Rust's standard libraries.
5//!
6//! [Rust`s dependency-free alloc library]: https://github.com/rust-lang/rust/tree/master/library
7
8#![no_std]
9
10pub mod alloc;