-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
49 lines (41 loc) · 1.18 KB
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
46
47
48
49
[package]
name = "clearscreen"
version = "4.0.6"
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.79.0"
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
]
[features]
windows-console = []
# deps are safe to upgrade with no major bumps as they're deliberately not exposed in our API
[dependencies]
terminfo = "0.9.0"
thiserror = "2.0.11"
which = "8.0.2"
[target.'cfg(unix)'.dependencies.nix]
version = "0.31.2"
default-features = false
features = ["fs", "term"]
[target.'cfg(windows)'.dependencies.windows-sys]
version = ">=0.59, <=0.61"
default-features = false
features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_NetworkManagement_NetManagement",
]