-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
32 lines (28 loc) · 872 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[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"]