rust-core_io/Cargo.toml

26 lines
785 B
TOML
Raw Normal View History

2016-07-08 14:15:00 +08:00
[package]
name = "core_io"
2016-10-18 05:03:56 +08:00
version = "0.1.20161011"
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"]
build = "build.rs"
2016-07-08 14:15:00 +08:00
[build-dependencies]
rustc_version = "0.1.7"
2016-07-11 04:11:32 +08:00
[features]
alloc = []
collections = ["alloc"]