xref: /relibc/core_io/Cargo.toml (revision eb7204830786d7cbb776c6a878c7a59569840484)
1[package]
2name = "core_io"
3version = "0.1.20181107"
4authors = ["The Rust Project Developers", "Jethro Beekman"]
5license = "MIT/Apache-2.0"
6description = """
7This is a copy of libstd::io with all the parts that don't work in core removed.
8Most importantly, it provides the Read and Write traits.
9
10This crate is (mostly) automatically generated from the rust git source. The
11version of the source that corresponds to your compiler version will be
12selected automatically by the build script.
13"""
14repository = "https://github.com/jethrogb/rust-core_io"
15documentation = "https://doc.rust-lang.org/nightly/std/io/index.html"
16keywords = ["core", "no_std", "io", "read", "write"]
17include = [
18	"build.rs",
19	"Cargo.toml",
20	"LICENSE-*",
21	"mapping.rs",
22	"src/**/*.rs",
23]
24
25build = "build.rs"
26
27[build-dependencies]
28rustc_version = "0.1.7"
29
30[features]
31alloc = []
32collections = ["alloc"]
33