blob: a7860b50e08ff50aa19ebf1f256c5f4daba474d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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"]
build = "build.rs"
[lib]
name = "libc"
path = "../../liblibc/src/lib.rs"
[dependencies]
core = { path = "../../libcore" }
|