rust-libc/Cargo.toml
Yuki Okushi 2cd24f52db
Prepare 0.2.137 releaase
Signed-off-by: Yuki Okushi <jtitor@2k36.org>
2022-10-26 06:44:24 +09:00

36 lines
954 B
TOML

[package]
name = "libc"
version = "0.2.137"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-lang/libc"
homepage = "https://github.com/rust-lang/libc"
documentation = "https://docs.rs/libc/"
keywords = ["libc", "ffi", "bindings", "operating", "system" ]
categories = ["external-ffi-bindings", "no-std", "os"]
build = "build.rs"
exclude = ["/ci/*", "/.github/*", "/.cirrus.yml", "/triagebot.toml"]
description = """
Raw FFI bindings to platform libraries like libc.
"""
[package.metadata.docs.rs]
features = ["const-extern-fn", "extra_traits"]
[dependencies]
rustc-std-workspace-core = { version = "1.0.0", optional = true }
[features]
default = ["std"]
std = []
align = []
rustc-dep-of-std = ['align', 'rustc-std-workspace-core']
extra_traits = []
const-extern-fn = []
# use_std is deprecated, use `std` instead
use_std = [ 'std' ]
[workspace]
members = ["libc-test"]