2020-01-15 06:44:51 +00:00
|
|
|
[package]
|
|
|
|
name = "libnotcurses-sys"
|
2020-10-25 14:10:50 +00:00
|
|
|
version = "2.0.2"
|
2020-01-15 06:46:21 +00:00
|
|
|
authors = ["nick black <dankamongmen@gmail.com>"]
|
|
|
|
license = "Apache-2.0"
|
2020-08-09 11:34:44 +00:00
|
|
|
edition = "2018"
|
|
|
|
description = "Low-level Rust bindings for the notcurses C library."
|
2020-01-15 06:46:21 +00:00
|
|
|
repository = "https://github.com/dankamongmen/notcurses"
|
|
|
|
homepage = "https://nick-black.com/dankwiki/index.php/Notcurses"
|
2020-01-15 06:44:51 +00:00
|
|
|
links = "notcurses"
|
2020-08-12 16:10:16 +00:00
|
|
|
build = "build/build.rs"
|
2020-08-09 11:34:44 +00:00
|
|
|
categories = [
|
|
|
|
"external-ffi-bindings",
|
|
|
|
"command-line-interface",
|
|
|
|
"visualization",
|
|
|
|
"multimedia",
|
|
|
|
"rendering",
|
|
|
|
]
|
|
|
|
keywords = ["tui", "cli", "terminal", "ncurses", "ffi"]
|
2020-06-12 03:31:13 +00:00
|
|
|
|
2020-02-05 10:28:35 +00:00
|
|
|
[dependencies]
|
2020-11-04 11:02:13 +00:00
|
|
|
libc = {version = "0.2.80", default-features = false}
|
2020-08-10 08:57:11 +00:00
|
|
|
cty = "0.2.1"
|
2020-11-04 11:02:13 +00:00
|
|
|
cstr_core = "0.2.2"
|
|
|
|
libc-print = "0.1.14"
|
2020-06-12 03:31:13 +00:00
|
|
|
|
2020-01-15 06:44:51 +00:00
|
|
|
[build-dependencies]
|
2020-11-04 11:02:13 +00:00
|
|
|
bindgen = ">= 0.55.1"
|
2020-02-05 10:28:35 +00:00
|
|
|
cc = "1.0"
|
2020-11-04 11:02:13 +00:00
|
|
|
pkg-config = "0.3.19"
|
2020-06-12 03:31:13 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-11-04 11:02:13 +00:00
|
|
|
serial_test = ">= 0.5.0"
|
|
|
|
serial_test_derive = ">= 0.5.0"
|
2020-08-09 14:24:58 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|