xref: /rust-libc-0.2.174/Cargo.toml (revision b46b6e2e)
1[package]
2name = "libc"
3version = "0.2.44"
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/*", "/.travis.yml", "/appveyor.yml"]
14description = """
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 = ["use_std"]
27use_std = []
28align = []
29rustc-dep-of-std = ['align', 'rustc-std-workspace-core']
30
31[workspace]
32members = ["libc-test"]
33