ckb-rust-std 1.0.0

A collection of `no_std` compatible modules ported from Rust's standard library, with an initial focus on the `io` module.
Documentation
1
2
3
4
5
6
7
8
#![doc = include_str!("../README.md")]
#![no_std]
#![allow(clippy::doc_lazy_continuation)]

extern crate alloc;

#[cfg(not(doctest))]
pub mod io;