blob: 336b0ac7fbdc65e133c68653fefb807545809652 [file] [log] [blame]
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -07001[package]
2name = "libc"
Chih-Hung Hsieh1164d3a2020-10-26 13:16:47 -07003version = "0.2.80"
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -07004authors = ["The Rust Project Developers"]
5license = "MIT OR Apache-2.0"
6readme = "README.md"
7repository = "https://github.com/rust-lang/libc"
8homepage = "https://github.com/rust-lang/libc"
Chih-Hung Hsieh1164d3a2020-10-26 13:16:47 -07009documentation = "https://docs.rs/libc/0.2.79/libc/"
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -070010keywords = ["libc", "ffi", "bindings", "operating", "system" ]
11categories = ["external-ffi-bindings", "no-std", "os"]
12build = "build.rs"
Matthew Maurere9a2a712020-01-02 15:36:15 -080013exclude = ["/ci/*", "/azure-pipelines.yml"]
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -070014description = """
15Raw FFI bindings to platform libraries like libc.
16"""
17
18[badges]
Chih-Hung Hsieh0df69f42020-03-20 12:10:13 -070019cirrus-ci = { repository = "rust-lang/libc", branch = "master" }
20azure-devops = { project = "rust-lang2/libc", pipeline = "rust-lang.libc%20(1)" }
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -070021
22[dependencies]
23rustc-std-workspace-core = { version = "1.0.0", optional = true }
24
25[features]
26default = ["std"]
27std = []
28align = []
29rustc-dep-of-std = ['align', 'rustc-std-workspace-core']
30extra_traits = []
Matthew Maurere9a2a712020-01-02 15:36:15 -080031const-extern-fn = []
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -070032# use_std is deprecated, use `std` instead
33use_std = [ 'std' ]
34
35[workspace]
36members = ["libc-test"]