core_io/Cargo.toml.orig

33 lines
872 B
TOML

[package]
name = "core_io"
version = "0.1.20210325"
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"]
include = [
"build.rs",
"Cargo.toml",
"LICENSE-*",
"mapping.rs",
"src/**/*.rs",
]
build = "build.rs"
[build-dependencies]
rustc_version = "0.1.7"
[features]
alloc = []
collections = ["alloc"]