mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-09-24 10:18:38 +02:00
deps: bump root and lock deps (#1751)
This commit is contained in:
parent
fe13ef8997
commit
16b805b0a2
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -683,9 +683,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "indexmap"
|
name = "indexmap"
|
||||||
version = "2.9.0"
|
version = "2.10.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"equivalent",
|
"equivalent",
|
||||||
"hashbrown",
|
"hashbrown",
|
||||||
@ -770,9 +770,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libredox"
|
name = "libredox"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.9.1",
|
"bitflags 2.9.1",
|
||||||
"libc",
|
"libc",
|
||||||
@ -1020,9 +1020,9 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "plist"
|
name = "plist"
|
||||||
version = "1.7.2"
|
version = "1.7.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3d77244ce2d584cd84f6a15f86195b8c9b2a0dfbfd817c09e0464244091a58ed"
|
checksum = "546b279bf0638ee811d9e47de2ca5b66575a543035d79fdf83959dd2f5c3b4c3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"indexmap",
|
"indexmap",
|
||||||
|
34
Cargo.toml
34
Cargo.toml
@ -75,24 +75,33 @@ generate_schema = ["schemars", "serde_json", "strum"]
|
|||||||
anyhow = "1.0.98"
|
anyhow = "1.0.98"
|
||||||
backtrace = "0.3.75"
|
backtrace = "0.3.75"
|
||||||
cfg-if = "1.0.1"
|
cfg-if = "1.0.1"
|
||||||
clap = { version = "4.5.40", features = ["default", "cargo", "wrap_help", "derive"] }
|
clap = { version = "4.5.40", features = [
|
||||||
|
"default",
|
||||||
|
"cargo",
|
||||||
|
"wrap_help",
|
||||||
|
"derive",
|
||||||
|
] }
|
||||||
concat-string = "1.0.1"
|
concat-string = "1.0.1"
|
||||||
crossterm = "0.29.0"
|
crossterm = "0.29.0"
|
||||||
ctrlc = { version = "3.4.7", features = ["termination"] }
|
ctrlc = { version = "3.4.7", features = ["termination"] }
|
||||||
dirs = "6.0.0"
|
dirs = "6.0.0"
|
||||||
hashbrown = "0.15.4"
|
hashbrown = "0.15.4"
|
||||||
humantime = "2.2.0"
|
humantime = "2.2.0"
|
||||||
indexmap = "2.9.0"
|
indexmap = "2.10.0"
|
||||||
indoc = "2.0.6"
|
indoc = "2.0.6"
|
||||||
itertools = "0.14.0"
|
itertools = "0.14.0"
|
||||||
nvml-wrapper = { version = "0.11.0", optional = true, features = ["legacy-functions"] }
|
nvml-wrapper = { version = "0.11.0", optional = true, features = [
|
||||||
|
"legacy-functions",
|
||||||
|
] }
|
||||||
regex = "1.11.1"
|
regex = "1.11.1"
|
||||||
serde = { version = "1.0.219", features = ["derive"] }
|
serde = { version = "1.0.219", features = ["derive"] }
|
||||||
starship-battery = { version = "0.10.2", optional = true }
|
starship-battery = { version = "0.10.2", optional = true }
|
||||||
sysinfo = "=0.35.2"
|
sysinfo = "=0.35.2"
|
||||||
timeless = "0.0.14-alpha"
|
timeless = "0.0.14-alpha"
|
||||||
toml_edit = { version = "0.22.27", features = ["serde"] }
|
toml_edit = { version = "0.22.27", features = ["serde"] }
|
||||||
tui = { version = "0.29.0", package = "ratatui", features = ["unstable-rendered-line-info"] }
|
tui = { version = "0.29.0", package = "ratatui", features = [
|
||||||
|
"unstable-rendered-line-info",
|
||||||
|
] }
|
||||||
unicode-ellipsis = "0.3.0"
|
unicode-ellipsis = "0.3.0"
|
||||||
unicode-segmentation = "1.12.0"
|
unicode-segmentation = "1.12.0"
|
||||||
unicode-width = "0.2.0"
|
unicode-width = "0.2.0"
|
||||||
@ -100,7 +109,11 @@ unicode-width = "0.2.0"
|
|||||||
# Used for logging. Mostly a debugging tool.
|
# Used for logging. Mostly a debugging tool.
|
||||||
fern = { version = "0.7.1", optional = true }
|
fern = { version = "0.7.1", optional = true }
|
||||||
log = { version = "0.4.27", optional = true }
|
log = { version = "0.4.27", optional = true }
|
||||||
time = { version = "0.3.41", features = ["local-offset", "formatting", "macros"], optional = true }
|
time = { version = "0.3.41", features = [
|
||||||
|
"local-offset",
|
||||||
|
"formatting",
|
||||||
|
"macros",
|
||||||
|
], optional = true }
|
||||||
|
|
||||||
# These are just used for JSON schema generation.
|
# These are just used for JSON schema generation.
|
||||||
schemars = { version = "0.9.0", optional = true }
|
schemars = { version = "0.9.0", optional = true }
|
||||||
@ -135,7 +148,9 @@ filedescriptor = "0.8.3"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_cmd = "2.0.17"
|
assert_cmd = "2.0.17"
|
||||||
cargo-husky = { version = "1.5.0", default-features = false, features = ["user-hooks"] }
|
cargo-husky = { version = "1.5.0", default-features = false, features = [
|
||||||
|
"user-hooks",
|
||||||
|
] }
|
||||||
predicates = "3.1.3"
|
predicates = "3.1.3"
|
||||||
tempfile = { version = "3.20.0", default-features = false }
|
tempfile = { version = "3.20.0", default-features = false }
|
||||||
|
|
||||||
@ -143,7 +158,12 @@ tempfile = { version = "3.20.0", default-features = false }
|
|||||||
portable-pty = "0.9.0"
|
portable-pty = "0.9.0"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
clap = { version = "4.5.40", features = ["default", "cargo", "wrap_help", "derive"] }
|
clap = { version = "4.5.40", features = [
|
||||||
|
"default",
|
||||||
|
"cargo",
|
||||||
|
"wrap_help",
|
||||||
|
"derive",
|
||||||
|
] }
|
||||||
clap_complete = "4.5.54"
|
clap_complete = "4.5.54"
|
||||||
clap_complete_nushell = "4.5.7"
|
clap_complete_nushell = "4.5.7"
|
||||||
clap_complete_fig = "4.5.2"
|
clap_complete_fig = "4.5.2"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user