2016-07-08 14:15:00 +08:00
|
|
|
[package]
|
|
|
|
name = "core_io"
|
2021-03-30 23:56:22 +08:00
|
|
|
version = "0.1.20210325"
|
2016-07-09 10:44:18 +08:00
|
|
|
authors = ["The Rust Project Developers", "Jethro Beekman"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
description = """
|
|
|
|
This is a copy of libstd::io with all the parts that don't work in core removed.
|
|
|
|
Most importantly, it provides the Read and Write traits.
|
|
|
|
|
|
|
|
This crate is (mostly) automatically generated from the rust git source. The
|
|
|
|
version of the source that corresponds to your compiler version will be
|
|
|
|
selected automatically by the build script.
|
|
|
|
"""
|
|
|
|
repository = "https://github.com/jethrogb/rust-core_io"
|
|
|
|
documentation = "https://doc.rust-lang.org/nightly/std/io/index.html"
|
|
|
|
keywords = ["core", "no_std", "io", "read", "write"]
|
2016-10-31 15:11:02 +08:00
|
|
|
include = [
|
|
|
|
"build.rs",
|
|
|
|
"Cargo.toml",
|
|
|
|
"LICENSE-*",
|
|
|
|
"mapping.rs",
|
|
|
|
"src/**/*.rs",
|
|
|
|
]
|
2016-07-09 10:44:18 +08:00
|
|
|
|
2016-07-08 16:20:33 +08:00
|
|
|
build = "build.rs"
|
2016-07-08 14:15:00 +08:00
|
|
|
|
2016-07-08 16:20:33 +08:00
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = "0.1.7"
|
2016-07-11 04:11:32 +08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
alloc = []
|
|
|
|
collections = ["alloc"]
|