File: Cargo.toml

package info (click to toggle)
notcurses 2.2.3%2Bdfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 18,584 kB
  • sloc: ansic: 29,146; cpp: 17,002; python: 1,316; sh: 360; makefile: 33
file content (47 lines) | stat: -rw-r--r-- 1,240 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "libnotcurses-sys"
version = "2.2.3"
authors = [
    "nick black <dankamongmen@gmail.com>",
		"José Luis Cruz <joseluis@andamira.net>"
]
license = "Apache-2.0"
edition = "2018"
description = "Low-level Rust bindings for the notcurses C library."
documentation = "https://dankamongmen.github.io/notcurses/rustdoc/libnotcurses_sys/"
repository = "https://github.com/dankamongmen/notcurses"
homepage = "https://nick-black.com/dankwiki/index.php/Notcurses"
links = "notcurses"
build = "build/build.rs"
categories = [
	"external-ffi-bindings",
	"command-line-interface",
	"visualization",
	"multimedia",
	"rendering",
	]
keywords = ["tui", "cli", "terminal", "ncurses", "ffi"]

[dependencies]
libc = {version = ">= 0.2.80", default-features = false}
cty = ">= 0.2.1"

[build-dependencies]
bindgen = ">= 0.55.1"
pkg-config = ">= 0.3.18"

[dev-dependencies]
serial_test = ">= 0.5.0"
serial_test_derive = ">= 0.5.0"

# for the examples
rand = ">= 0.8"

# 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]