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