forked from murarth/mortal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (30 loc) · 929 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 = "mortal"
version = "0.1.5"
authors = ["Murarth <[email protected]>"]
edition = "2018"
description = "Cross-platform terminal interface"
documentation = "https://docs.rs/mortal/"
homepage = "https://github.com/murarth/mortal"
repository = "https://github.com/murarth/mortal"
categories = ["command-line-interface"]
keywords = ["cli", "console", "screen", "term", "terminal"]
license = "MIT/Apache-2.0"
readme = "README.md"
[badges]
travis-ci = { repository = "murarth/mortal" }
[dependencies]
bitflags = "1.0"
smallstr = "0.1"
unicode-normalization = "0.1"
unicode-width = "0.1"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
nix = "0.13"
terminfo = "0.6"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"consoleapi", "handleapi", "minwindef", "ntdef", "processenv", "synchapi",
"winbase", "wincon", "winerror", "winnt", "winuser" ] }
[dev-dependencies]
rand = "0.6"