From b553a214c82f6510e4966b26d6c46c0db9c12a0b Mon Sep 17 00:00:00 2001 From: Sean Griffin Date: Sun, 3 Dec 2017 14:20:54 -0700 Subject: [PATCH] Remove the database keyword/category from libsqlite3-sys Currently `libsqlite3-sys` is the first result for both the "database" keyword, and the "Database interfaces" category. This makes sense, as it is a dependency of both Diesel and rusqlite. However, this library is not intended to be used directly. While it can technically be called a database interface, FFI is clearly the category that applies more than anything else. Someone browsing this keyword or category is likely looking for a Rust library they can use, not a C one. --- libsqlite3-sys/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index ef6d54a..cfe4063 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -7,8 +7,8 @@ description = "Native bindings to the libsqlite3 library" license = "MIT" links = "sqlite3" build = "build.rs" -keywords = ["sqlite", "sqlcipher", "database", "ffi"] -categories = ["database", "external-ffi-bindings"] +keywords = ["sqlite", "sqlcipher", "ffi"] +categories = ["external-ffi-bindings"] [features] default = ["min_sqlite_version_3_6_8"]