1[package] 2 3name = "libc" 4version = "0.2.33" 5authors = ["The Rust Project Developers"] 6license = "MIT/Apache-2.0" 7readme = "README.md" 8repository = "https://github.com/rust-lang/libc" 9homepage = "https://github.com/rust-lang/libc" 10documentation = "http://doc.rust-lang.org/libc" 11description = """ 12A library for types and bindings to native C functions often found in libc or 13other common platform libraries. 14""" 15 16[badges] 17travis-ci = { repository = "rust-lang/libc" } 18appveyor = { repository = "rust-lang/libc", project_name = "rust-lang-libs/libc" } 19 20[features] 21default = ["use_std"] 22use_std = [] 23 24[workspace] 25members = ["libc-test"] 26