1[package]
2name = "libc"
3version = "0.2.93"
4authors = ["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 = "https://docs.rs/libc/"
10keywords = ["libc", "ffi", "bindings", "operating", "system" ]
11categories = ["external-ffi-bindings", "no-std", "os"]
12build = "build.rs"
13exclude = ["/ci/*", "/.github/*", "/.cirrus.yml", "/triagebot.toml"]
14description = """
15Raw FFI bindings to platform libraries like libc.
16"""
17
18[dependencies]
19rustc-std-workspace-core = { version = "1.0.0", optional = true }
20
21[features]
22default = ["std"]
23std = []
24align = []
25rustc-dep-of-std = ['align', 'rustc-std-workspace-core']
26extra_traits = []
27const-extern-fn = []
28# use_std is deprecated, use `std` instead
29use_std = [ 'std' ]
30
31[workspace]
32members = ["libc-test"]
33