-
Notifications
You must be signed in to change notification settings - Fork 44
/
Cargo.toml
38 lines (33 loc) · 892 Bytes
/
Cargo.toml
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
[package]
name = "pancurses"
description = """
pancurses is a curses libary for Rust that supports both Unix and Windows
platforms by abstracting away the backend that it uses
(ncurses-rs and pdcurses-sys respectively).
"""
homepage = "https://github.com/ihalila/pancurses"
documentation = "https://docs.rs/pancurses"
repository = "https://github.com/ihalila/pancurses"
readme = "README.md"
license = "MIT"
keywords = ["pancurses", "curses", "ncurses", "pdcurses"]
version = "0.17.0"
authors = ["Ilkka Halila <ilkka@hali.la>"]
[lib]
name = "pancurses"
[dependencies]
log = "0.4"
libc = "0.2"
[target.'cfg(windows)'.dependencies]
pdcurses-sys = "0.7"
winreg = "0.5"
[target.'cfg(unix)'.dependencies]
ncurses = "5.101.0"
[dev-dependencies]
rand = "0.8.4"
[features]
wide = ["ncurses/wide"]
win32 = ["pdcurses-sys/win32"]
win32a = ["pdcurses-sys/win32a"]
show_menu = []
disable_resize = []