[package]
name = "libnotcurses-sys"
version = "3.9.1"
authors = [
"nick black <dankamongmen@gmail.com>",
"José Luis Cruz <joseluis@andamira.net>"
]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.64.0"
description = "Low-level Rust bindings for the notcurses C library."
documentation = "https://docs.rs/libnotcurses-sys/"
repository = "https://github.com/dankamongmen/libnotcurses-sys"
homepage = "https://nick-black.com/dankwiki/index.php/Notcurses"
readme = "./README.md"
links = "notcurses"
build = "build/build.rs"
categories = [
"external-ffi-bindings",
"command-line-interface",
"visualization",
"multimedia",
"rendering",
]
keywords = ["tui", "cli", "terminal", "ncurses", "ffi"]
include = [
"/build/",
"/examples/hello-world-*.rs",
"/src/**/*.rs",
"/LICENSE-*",
"/README.md"
]
[features]
default = ["libc", "keep_vendored"]
std = ["libc"]
nightly = []
keep_vendored = []
use_vendored_bindings = ["keep_vendored"]
vendor_bindings = []
vendor_csource = []
compile_csource = ["cc", "keep_vendored"]
[dependencies]
libc = { version = "0.2.132", default-features = false, optional = true }
[dev-dependencies]
serial_test = "0.10"
rand = "0.8"
[build-dependencies]
bindgen = "0.60"
pkg-config = "0.3.25"
cc = { version = "1.0", optional = true }
[package.metadata.docs.rs]
features = ["std", "nightly", "use_vendored_bindings"]
[badges]
maintenance = { status = "actively-developed" }