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

#![no_std]

pub mod convert;