1[package]
2name = "libc"
3version = "0.2.103"
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[package.metadata.docs.rs]
19features = ["const-extern-fn", "extra_traits"]
20
21[dependencies]
22rustc-std-workspace-core = { version = "1.0.0", optional = true }
23
24[features]
25default = ["std"]
26std = []
27align = []
28rustc-dep-of-std = ['align', 'rustc-std-workspace-core']
29extra_traits = []
30const-extern-fn = []
31# use_std is deprecated, use `std` instead
32use_std = [ 'std' ]
33
34[workspace]
35members = ["libc-test"]
36