[package]
name = "libnotcurses-sys"
version = "3.11.0"
authors = [
"nick black <dankamongmen@gmail.com>",
"José Luis Cruz <joseluis@andamira.net>"
]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.65.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 = []
nightly_docs = ["nightly", "std", "use_vendored_bindings"]
keep_vendored = []
use_vendored_bindings = ["keep_vendored"]
vendor_bindings = []
vendor_csource = []
compile_csource = ["cc", "keep_vendored"]
[dependencies]
libc = { version = "0.2.152", default-features = false, optional = true }
[dev-dependencies]
serial_test = { version = "1.0.0" }
rand = "0.8"
[build-dependencies]
bindgen = { version = "0.66.1", default-features = false, features = ["runtime"] }
pkg-config = "0.3.25"
cc = { version = "1.0", optional = true }
[package.metadata.docs.rs]
features = ["nightly_docs"]
[badges]
maintenance = { status = "passively-maintained" }