2016-07-10 16:07:09 +08:00
|
|
|
//! <p id="core_io-show-docblock"></p>
|
|
|
|
//! This is just a listing of the functionality available in this crate. See
|
|
|
|
//! the [std documentation](https://doc.rust-lang.org/nightly/std/io/index.html)
|
|
|
|
//! for a full description of the functionality.
|
2016-07-08 14:15:00 +08:00
|
|
|
#![allow(stable_features,unused_features)]
|
|
|
|
#![feature(question_mark,const_fn,collections,alloc,unicode,copy_from_slice,str_char)]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate collections;
|
|
|
|
extern crate alloc;
|
|
|
|
extern crate rustc_unicode;
|
|
|
|
|
2016-07-08 16:20:33 +08:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/io.rs"));
|
2016-07-08 14:15:00 +08:00
|
|
|
pub use io::*;
|