2020-01-15 06:44:51 +00:00
|
|
|
[package]
|
|
|
|
name = "libnotcurses-sys"
|
2021-03-08 12:10:50 +00:00
|
|
|
version = "2.2.3"
|
2021-02-01 20:26:05 +00:00
|
|
|
authors = [
|
|
|
|
"nick black <dankamongmen@gmail.com>",
|
|
|
|
"José Luis Cruz <joseluis@andamira.net>"
|
|
|
|
]
|
2020-01-15 06:46:21 +00:00
|
|
|
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-12-06 16:59:32 +00:00
|
|
|
documentation = "https://dankamongmen.github.io/notcurses/rustdoc/libnotcurses_sys/"
|
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]
|
2021-01-01 20:47:41 +00:00
|
|
|
libc = {version = ">= 0.2.80", default-features = false}
|
|
|
|
cty = ">= 0.2.1"
|
2020-06-12 03:31:13 +00:00
|
|
|
|
2020-01-15 06:44:51 +00:00
|
|
|
[build-dependencies]
|
2020-11-30 03:02:21 +00:00
|
|
|
bindgen = ">= 0.55.1"
|
|
|
|
pkg-config = ">= 0.3.18"
|
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"
|
2021-01-01 20:47:41 +00:00
|
|
|
|
|
|
|
# for the examples
|
|
|
|
rand = ">= 0.8"
|
|
|
|
|
2021-01-04 13:29:41 +00:00
|
|
|
# https://doc.rust-lang.org/cargo/reference/profiles.html
|
|
|
|
[profile.dev]
|
|
|
|
#
|
|
|
|
[profile.release]
|
|
|
|
# opt-level = 0 # [0-*3 | s | z]
|
|
|
|
# lto = "fat" # [*fat | thin]
|
|
|
|
# debug = 1 # [*0/false | 1 | 2/true]
|
|
|
|
# debug-assertions = true # [*false | true]
|