tidy up & update crate deps, categories & keywords

This commit is contained in:
joseLuís 2020-08-09 13:34:44 +02:00
parent 75e805d1f1
commit e9bf400a7e
2 changed files with 23 additions and 10 deletions

View File

@ -1,23 +1,30 @@
[package] [package]
name = "libnotcurses-sys" name = "libnotcurses-sys"
version = "1.6.11"
authors = ["nick black <dankamongmen@gmail.com>"] authors = ["nick black <dankamongmen@gmail.com>"]
license = "Apache-2.0" 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" repository = "https://github.com/dankamongmen/notcurses"
homepage = "https://nick-black.com/dankwiki/index.php/Notcurses" homepage = "https://nick-black.com/dankwiki/index.php/Notcurses"
version = "1.6.11"
links = "notcurses" links = "notcurses"
build = "build.rs" build = "build.rs"
edition = "2018" categories = [
categories = ["external-ffi-bindings"] "external-ffi-bindings",
"command-line-interface",
"visualization",
"multimedia",
"rendering",
]
keywords = ["tui", "cli", "terminal", "ncurses", "ffi"]
[dependencies] [dependencies]
libc = "0.2.66" libc = "0.2.74"
[build-dependencies] [build-dependencies]
bindgen = ">= 0.52.0" bindgen = ">= 0.52.0"
cc = "1.0" cc = "1.0"
pkg-config = "0.3.17" pkg-config = "0.3.18"
[dev-dependencies] [dev-dependencies]
serial_test = ">= 0.4.0" serial_test = ">= 0.4.0"

View File

@ -2,17 +2,23 @@
name = "notcurses" name = "notcurses"
version = "1.6.11" version = "1.6.11"
authors = ["nick black <dankamongmen@gmail.com>"] authors = ["nick black <dankamongmen@gmail.com>"]
edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"
edition = "2018"
description = "Rust bindings for the notcurses C library." description = "Rust bindings for the notcurses C library."
repository = "https://github.com/dankamongmen/notcurses" repository = "https://github.com/dankamongmen/notcurses"
homepage = "https://nick-black.com/dankwiki/index.php/Notcurses" homepage = "https://nick-black.com/dankwiki/index.php/Notcurses"
categories = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html "api-bindings",
"command-line-interface",
"visualization",
"multimedia",
"rendering",
]
keywords = ["tui", "cli", "terminal", "ncurses"]
[dependencies] [dependencies]
libnotcurses-sys = "^1.6.11" libnotcurses-sys = "^1.6.11"
libc = "0.2.66" libc = "0.2.74"
libc-stdhandle = ">= 0.1.0" libc-stdhandle = ">= 0.1.0"
[dev-dependencies] [dev-dependencies]