about summary refs log tree commit diff
path: root/src/rustc/libc_shim/Cargo.toml
blob: 8fc713e0f1bb3a6467d1d13b832e49629af543e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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"
test = false

[dependencies]
core = { path = "../../libcore" }