-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 916 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
[package]
name = "sl-console"
version = "0.10.1"
authors = [
"ticki <[email protected]>",
"gycos <[email protected]>",
"IGI-111 <[email protected]>",
"Steven Stanfield <[email protected]>",
"Price Clark <[email protected]>"
]
description = "A bindless library for manipulating terminals."
repository = "https://github.com/sl-sh-dev/sl-console"
license = "MIT"
keywords = ["tty", "color", "terminal", "password", "tui"]
exclude = ["target", "CHANGELOG.md", "image.png", "Cargo.lock"]
edition = "2018"
[dependencies]
numtoa = "0.2"
lazy_static = "1.4.0"
parking_lot = "0.11"
scopeguard = "1.1.0"
log = "0.4.14"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
simple_logger = "1.11.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winbase", "consoleapi", "processenv"] }
crossbeam-channel = "0.5"