1[package] 2name = "libc" 3version = "0.2.77" 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 = "http://doc.rust-lang.org/libc" 10keywords = ["libc", "ffi", "bindings", "operating", "system" ] 11categories = ["external-ffi-bindings", "no-std", "os"] 12build = "build.rs" 13exclude = ["/ci/*", "/azure-pipelines.yml"] 14description = """ 15Raw FFI bindings to platform libraries like libc. 16""" 17 18[badges] 19cirrus-ci = { repository = "rust-lang/libc", branch = "master" } 20azure-devops = { project = "rust-lang2/libc", pipeline = "rust-lang.libc%20(1)" } 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 = [] 31const-extern-fn = [] 32# use_std is deprecated, use `std` instead 33use_std = [ 'std' ] 34 35[workspace] 36members = ["libc-test"] 37