Chih-Hung Hsieh | e5870cf | 2019-10-25 17:35:48 -0700 | [diff] [blame] | 1 | [package] |
| 2 | name = "libc" |
Chih-Hung Hsieh | 1164d3a | 2020-10-26 13:16:47 -0700 | [diff] [blame] | 3 | version = "0.2.80" |
Chih-Hung Hsieh | e5870cf | 2019-10-25 17:35:48 -0700 | [diff] [blame] | 4 | authors = ["The Rust Project Developers"] |
| 5 | license = "MIT OR Apache-2.0" |
| 6 | readme = "README.md" |
| 7 | repository = "https://github.com/rust-lang/libc" |
| 8 | homepage = "https://github.com/rust-lang/libc" |
Chih-Hung Hsieh | 1164d3a | 2020-10-26 13:16:47 -0700 | [diff] [blame] | 9 | documentation = "https://docs.rs/libc/0.2.79/libc/" |
Chih-Hung Hsieh | e5870cf | 2019-10-25 17:35:48 -0700 | [diff] [blame] | 10 | keywords = ["libc", "ffi", "bindings", "operating", "system" ] |
| 11 | categories = ["external-ffi-bindings", "no-std", "os"] |
| 12 | build = "build.rs" |
Matthew Maurer | e9a2a71 | 2020-01-02 15:36:15 -0800 | [diff] [blame] | 13 | exclude = ["/ci/*", "/azure-pipelines.yml"] |
Chih-Hung Hsieh | e5870cf | 2019-10-25 17:35:48 -0700 | [diff] [blame] | 14 | description = """ |
| 15 | Raw FFI bindings to platform libraries like libc. |
| 16 | """ |
| 17 | |
| 18 | [badges] |
Chih-Hung Hsieh | 0df69f4 | 2020-03-20 12:10:13 -0700 | [diff] [blame] | 19 | cirrus-ci = { repository = "rust-lang/libc", branch = "master" } |
| 20 | azure-devops = { project = "rust-lang2/libc", pipeline = "rust-lang.libc%20(1)" } |
Chih-Hung Hsieh | e5870cf | 2019-10-25 17:35:48 -0700 | [diff] [blame] | 21 | |
| 22 | [dependencies] |
| 23 | rustc-std-workspace-core = { version = "1.0.0", optional = true } |
| 24 | |
| 25 | [features] |
| 26 | default = ["std"] |
| 27 | std = [] |
| 28 | align = [] |
| 29 | rustc-dep-of-std = ['align', 'rustc-std-workspace-core'] |
| 30 | extra_traits = [] |
Matthew Maurer | e9a2a71 | 2020-01-02 15:36:15 -0800 | [diff] [blame] | 31 | const-extern-fn = [] |
Chih-Hung Hsieh | e5870cf | 2019-10-25 17:35:48 -0700 | [diff] [blame] | 32 | # use_std is deprecated, use `std` instead |
| 33 | use_std = [ 'std' ] |
| 34 | |
| 35 | [workspace] |
| 36 | members = ["libc-test"] |