2020-01-15 06:44:51 +00:00
|
|
|
[package]
|
|
|
|
name = "libnotcurses-sys"
|
2021-06-12 21:27:28 +00:00
|
|
|
version = "2.3.4"
|
2021-02-01 20:26:05 +00:00
|
|
|
authors = [
|
|
|
|
"nick black <dankamongmen@gmail.com>",
|
|
|
|
"José Luis Cruz <joseluis@andamira.net>"
|
|
|
|
]
|
2021-04-21 16:09:41 +00:00
|
|
|
license = "MIT OR 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"
|
2021-04-21 16:09:41 +00:00
|
|
|
readme = "./README.md"
|
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"]
|
2021-04-21 16:09:41 +00:00
|
|
|
include = ["build/", "examples/", "src/", "LICENSE-*", "README.md"]
|
2020-06-12 03:31:13 +00:00
|
|
|
|
2020-02-05 10:28:35 +00:00
|
|
|
[dependencies]
|
2021-04-20 20:08:22 +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]
|
2021-04-20 20:30:33 +00:00
|
|
|
# https://github.com/rust-lang/rust-bindgen/blob/master/CHANGELOG.md#0551
|
|
|
|
# https://pkgs.org/search/?q=bindgen
|
2021-05-24 12:24:31 +00:00
|
|
|
bindgen = "^0.57"
|
2021-04-20 20:08:22 +00:00
|
|
|
pkg-config = "^0.3.18"
|
2020-06-12 03:31:13 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-04-20 20:08:22 +00:00
|
|
|
serial_test = "^0.5.0"
|
|
|
|
serial_test_derive = "^0.5.0"
|
2021-01-01 20:47:41 +00:00
|
|
|
|
2021-04-20 20:08:22 +00:00
|
|
|
rand = "^0.8"
|
2021-01-01 20:47:41 +00:00
|
|
|
|
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]
|