blob: 38a3aefa23bb442d5eb3d01284449c394209f78f (
plain)
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
|
# This is a shim Cargo.toml over the "real Cargo.toml" found in the libc
# repository itself. The purpose for this is to add a build script which prints
# out `--cfg stdbuild` to mirror the makefiles' build system.
#
# Note that other than that this isn't actually needed, and we should probably
# remove this shim in favor of just working with cargo features directly with
# libc. That should make everything nicer!
[package]
name = "libc"
version = "0.0.0"
authors = ["The Rust Project Developers"]
[lib]
name = "libc"
path = "../../liblibc/src/lib.rs"
test = false
bench = false
doc = false
[dependencies]
core = { path = "../../libcore" }
[features]
stdbuild = []
default = ["stdbuild"]
|