summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2018-11-22 19:05:49 +0100
committerMarkus Wanner <markus@bluegap.ch>2018-11-26 16:08:58 +0100
commit223bdca546b2057fccfa9a06eef1899362a6fa3b (patch)
tree3fac3312de24be286eacb68d403e7e28b9e489c9
parenta5bfa1a044da919347c0c82555f10e3d67cf9f6e (diff)
downloadrust-libc-223bdca546b2057fccfa9a06eef1899362a6fa3b.tar.gz
Use crates.io keywords and categories
Closes #651 .
-rw-r--r--Cargo.toml9
-rw-r--r--README.md2
2 files changed, 6 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f3e57f83ad..a89376c41d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,12 +7,13 @@ readme = "README.md"
repository = "https://github.com/rust-lang/libc"
homepage = "https://github.com/rust-lang/libc"
documentation = "http://doc.rust-lang.org/libc"
-description = """
-A library for types and bindings to native C functions often found in libc or
-other common platform libraries.
-"""
+keywords = ["libc", "ffi", "bindings", "operating", "system" ]
+categories = ["external-ffi-bindings", "no-std", "os"]
build = "build.rs"
exclude = ["/ci/*", "/.travis.yml", "/appveyor.yml"]
+description = """
+Raw FFI bindings to platform libraries like libc.
+"""
[badges]
travis-ci = { repository = "rust-lang/libc" }
diff --git a/README.md b/README.md
index 1aba647484..6cf2d15971 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
libc
====
-Rust wrapper over the system's `libc`.
+Raw FFI bindings to platform libraries like `libc`.
[![Build Status](https://travis-ci.org/rust-lang/libc.svg?branch=master)](https://travis-ci.org/rust-lang/libc)
[![Build status](https://ci.appveyor.com/api/projects/status/github/rust-lang/libc?svg=true)](https://ci.appveyor.com/project/rust-lang-libs/libc)