blob: c701f41f2a0ec6e7229bd0d8724f1254dff4eda0 [file] [log] [blame]
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -07001[package]
2name = "libc"
Matthew Maurere9a2a712020-01-02 15:36:15 -08003version = "0.2.66"
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"
9documentation = "http://doc.rust-lang.org/libc"
10keywords = ["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]
19travis-ci = { repository = "rust-lang/libc" }
20appveyor = { repository = "rust-lang/libc", project_name = "rust-lang-libs/libc" }
21
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"]