2015-01-13 16:53:42 +01:00
|
|
|
[package]
|
|
|
|
name = "libc"
|
2019-08-20 15:00:05 +02:00
|
|
|
version = "0.2.64"
|
2015-01-13 16:53:42 +01:00
|
|
|
authors = ["The Rust Project Developers"]
|
2018-11-16 11:56:41 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2015-01-13 16:53:42 +01:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/rust-lang/libc"
|
|
|
|
homepage = "https://github.com/rust-lang/libc"
|
|
|
|
documentation = "http://doc.rust-lang.org/libc"
|
2018-11-22 19:05:49 +01:00
|
|
|
keywords = ["libc", "ffi", "bindings", "operating", "system" ]
|
|
|
|
categories = ["external-ffi-bindings", "no-std", "os"]
|
2018-09-17 20:33:52 +02:00
|
|
|
build = "build.rs"
|
2019-07-09 12:19:53 +02:00
|
|
|
exclude = ["/ci/*", "/azure-pipelines.yml"]
|
2018-11-22 19:05:49 +01:00
|
|
|
description = """
|
|
|
|
Raw FFI bindings to platform libraries like libc.
|
|
|
|
"""
|
2015-09-16 02:30:53 +02:00
|
|
|
|
2017-07-25 01:21:04 +02:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "rust-lang/libc" }
|
2017-10-13 21:38:43 +02:00
|
|
|
appveyor = { repository = "rust-lang/libc", project_name = "rust-lang-libs/libc" }
|
2017-07-25 01:21:04 +02:00
|
|
|
|
2018-11-20 07:14:05 +01:00
|
|
|
[dependencies]
|
|
|
|
rustc-std-workspace-core = { version = "1.0.0", optional = true }
|
|
|
|
|
2015-09-16 02:30:53 +02:00
|
|
|
[features]
|
2019-05-24 13:22:03 +02:00
|
|
|
default = ["std"]
|
|
|
|
std = []
|
2018-07-17 20:12:59 +02:00
|
|
|
align = []
|
2018-11-20 07:14:05 +01:00
|
|
|
rustc-dep-of-std = ['align', 'rustc-std-workspace-core']
|
2019-02-07 11:37:21 +01:00
|
|
|
extra_traits = []
|
2019-05-24 13:22:03 +02:00
|
|
|
# use_std is deprecated, use `std` instead
|
|
|
|
use_std = [ 'std' ]
|
2016-10-08 20:33:09 +02:00
|
|
|
|
|
|
|
[workspace]
|
2017-08-18 18:20:11 +02:00
|
|
|
members = ["libc-test"]
|