core2 0.3.3

The bare essentials of std::io for use in no_std. Alloc support is optional.
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(feature = "nightly", feature(maybe_uninit_ref))]
#![cfg_attr(feature = "nightly", feature(never_type))]
#![cfg_attr(all(feature = "std", feature = "nightly"), feature(read_initializer))]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "std", allow(dead_code))]

pub mod error;
pub mod io;

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