-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
45 lines (38 loc) · 932 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
39
40
41
42
43
44
45
[package]
name = "clearscreen"
version = "3.0.0"
authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0 OR MIT"
description = "Cross-platform terminal screen clearing"
keywords = ["clear", "cls", "cli", "terminal"]
documentation = "https://github.com/watchexec/clearscreen"
homepage = "https://github.com/watchexec/clearscreen"
repository = "https://github.com/watchexec/clearscreen"
readme = "README.md"
edition = "2021"
exclude = ["/bin", "/.github"]
rust-version = "1.72.0"
[features]
windows-console = []
[dependencies]
terminfo = "0.9.0"
thiserror = "1.0.38"
which = "6.0.1"
[target.'cfg(unix)'.dependencies.nix]
version = "0.28.0"
default-features = false
features = ["fs", "term"]
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.9"
features = [
"consoleapi",
"errhandlingapi",
"handleapi",
"impl-default",
"lmapibuf",
"lmserver",
"lmwksta",
"processenv",
"winbase",
"wincon",
]