-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
41 lines (34 loc) · 976 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
[package]
name = "clearscreen"
version = "4.0.1"
authors = ["Félix Saparelli <[email protected]>"]
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.79.0"
[features]
windows-console = []
[dependencies]
terminfo = "0.9.0"
thiserror = "2.0.9"
which = "7.0.0"
[target.'cfg(unix)'.dependencies.nix]
version = "0.29.0"
default-features = false
features = ["fs", "term"]
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.59.0"
default-features = false
features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_NetworkManagement_NetManagement",
]