blob: 84f2d29827cedc2f03f784355db1a4df41e1dd53 [file] [log] [blame]
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -07001[package]
2name = "libc"
Joel Galenson50683672021-04-08 10:31:43 -07003version = "0.2.93"
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -07004authors = ["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"
Haibo Huang4e6868a2020-12-07 21:09:00 -08009documentation = "https://docs.rs/libc/"
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -070010keywords = ["libc", "ffi", "bindings", "operating", "system" ]
11categories = ["external-ffi-bindings", "no-std", "os"]
12build = "build.rs"
Haibo Huang4e6868a2020-12-07 21:09:00 -080013exclude = ["/ci/*", "/.github/*", "/.cirrus.yml", "/triagebot.toml"]
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -070014description = """
15Raw FFI bindings to platform libraries like libc.
16"""
17
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -070018[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 = []
Matthew Maurere9a2a712020-01-02 15:36:15 -080027const-extern-fn = []
Chih-Hung Hsiehe5870cf2019-10-25 17:35:48 -070028# use_std is deprecated, use `std` instead
29use_std = [ 'std' ]
30
31[workspace]
32members = ["libc-test"]