mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-22 20:23:12 +00:00
other: sort Cargo.toml (#802)
This commit is contained in:
parent
46a2a3a52b
commit
72189185b6
1 changed files with 8 additions and 7 deletions
15
Cargo.toml
15
Cargo.toml
|
@ -52,20 +52,25 @@ zfs = ["sysctl"]
|
||||||
anyhow = "1.0.57"
|
anyhow = "1.0.57"
|
||||||
backtrace = "0.3.65"
|
backtrace = "0.3.65"
|
||||||
cfg-if = "1.0.0"
|
cfg-if = "1.0.0"
|
||||||
crossterm = "0.18.2"
|
|
||||||
ctrlc = { version = "3.1.9", features = ["termination"] }
|
|
||||||
clap = { version = "3.1.12", features = ["default", "cargo", "wrap_help"] }
|
clap = { version = "3.1.12", features = ["default", "cargo", "wrap_help"] }
|
||||||
concat-string = "1.0.1"
|
concat-string = "1.0.1"
|
||||||
|
crossterm = "0.18.2"
|
||||||
|
ctrlc = { version = "3.1.9", features = ["termination"] }
|
||||||
# const_format = "0.2.23"
|
# const_format = "0.2.23"
|
||||||
dirs = "4.0.0"
|
dirs = "4.0.0"
|
||||||
|
|
||||||
|
fern = { version = "0.6.1", optional = true }
|
||||||
futures = "0.3.21"
|
futures = "0.3.21"
|
||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
fxhash = "0.2.1"
|
fxhash = "0.2.1"
|
||||||
indexmap = "1.8.1"
|
indexmap = "1.8.1"
|
||||||
itertools = "0.10.3"
|
itertools = "0.10.3"
|
||||||
|
log = { version = "0.4.16", optional = true }
|
||||||
|
nvml-wrapper = { version = "0.7.0", optional = true }
|
||||||
once_cell = "1.5.2"
|
once_cell = "1.5.2"
|
||||||
regex = "1.5.5"
|
regex = "1.5.5"
|
||||||
serde = { version = "1.0.136", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
|
starship-battery = { version = "0.7.9", optional = true }
|
||||||
sysinfo = "0.23.10"
|
sysinfo = "0.23.10"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
time = { version = "0.3.9", features = ["formatting", "macros"] }
|
time = { version = "0.3.9", features = ["formatting", "macros"] }
|
||||||
|
@ -75,11 +80,6 @@ typed-builder = "0.10.0"
|
||||||
unicode-segmentation = "1.9.0"
|
unicode-segmentation = "1.9.0"
|
||||||
unicode-width = "0.1.9"
|
unicode-width = "0.1.9"
|
||||||
|
|
||||||
fern = { version = "0.6.1", optional = true }
|
|
||||||
log = { version = "0.4.16", optional = true }
|
|
||||||
starship-battery = { version = "0.7.9", optional = true }
|
|
||||||
nvml-wrapper = { version = "0.7.0", optional = true }
|
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
libc = "0.2.124"
|
libc = "0.2.124"
|
||||||
|
|
||||||
|
@ -155,3 +155,4 @@ output = "bottom_x86_64_installer.msi"
|
||||||
version = "1"
|
version = "1"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["user-hooks"]
|
features = ["user-hooks"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue