From e9bf400a7eccf4134b5b6fc40a5eb82b4f44fcb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?joseLu=C3=ADs?= Date: Sun, 9 Aug 2020 13:34:44 +0200 Subject: [PATCH] tidy up & update crate deps, categories & keywords --- rust/libnotcurses-sys/Cargo.toml | 19 +++++++++++++------ rust/notcurses/Cargo.toml | 14 ++++++++++---- 2 files changed, 23 insertions(+), 10 deletions(-) diff --git a/rust/libnotcurses-sys/Cargo.toml b/rust/libnotcurses-sys/Cargo.toml index 0a29508d3..1d0dcbf5f 100644 --- a/rust/libnotcurses-sys/Cargo.toml +++ b/rust/libnotcurses-sys/Cargo.toml @@ -1,23 +1,30 @@ [package] name = "libnotcurses-sys" +version = "1.6.11" authors = ["nick black "] license = "Apache-2.0" -description = "Low-level rust bindings for the notcurses C library." +edition = "2018" +description = "Low-level Rust bindings for the notcurses C library." repository = "https://github.com/dankamongmen/notcurses" homepage = "https://nick-black.com/dankwiki/index.php/Notcurses" -version = "1.6.11" links = "notcurses" build = "build.rs" -edition = "2018" -categories = ["external-ffi-bindings"] +categories = [ + "external-ffi-bindings", + "command-line-interface", + "visualization", + "multimedia", + "rendering", + ] +keywords = ["tui", "cli", "terminal", "ncurses", "ffi"] [dependencies] -libc = "0.2.66" +libc = "0.2.74" [build-dependencies] bindgen = ">= 0.52.0" cc = "1.0" -pkg-config = "0.3.17" +pkg-config = "0.3.18" [dev-dependencies] serial_test = ">= 0.4.0" diff --git a/rust/notcurses/Cargo.toml b/rust/notcurses/Cargo.toml index 0d410ec2d..b4629359b 100644 --- a/rust/notcurses/Cargo.toml +++ b/rust/notcurses/Cargo.toml @@ -2,17 +2,23 @@ name = "notcurses" version = "1.6.11" authors = ["nick black "] -edition = "2018" license = "Apache-2.0" +edition = "2018" description = "Rust bindings for the notcurses C library." repository = "https://github.com/dankamongmen/notcurses" homepage = "https://nick-black.com/dankwiki/index.php/Notcurses" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +categories = [ + "api-bindings", + "command-line-interface", + "visualization", + "multimedia", + "rendering", + ] +keywords = ["tui", "cli", "terminal", "ncurses"] [dependencies] libnotcurses-sys = "^1.6.11" -libc = "0.2.66" +libc = "0.2.74" libc-stdhandle = ">= 0.1.0" [dev-dependencies]