-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
35 lines (28 loc) · 952 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
[package]
name = "mortal"
version = "0.2.4"
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"
[dependencies]
bitflags = "2.0"
smallstr = "0.2"
unicode-normalization = "0.1"
unicode-width = "0.1"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
nix = { version = "0.26", default-features = false, features = ["poll", "signal", "term"] }
terminfo = "0.8"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"consoleapi", "handleapi", "minwindef", "ntdef", "processenv", "synchapi",
"winbase", "wincon", "winerror", "winnt", "winuser" ] }
[dev-dependencies]
rand = "0.8"