mirror of
https://github.com/ClementTsang/bottom.git
synced 2026-08-25 04:46:40 +00:00
deps: bump itertools to 0.15.0 (#2106)
Changelog: https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md#0150
This commit is contained in:
Generated
+13
-4
@@ -151,7 +151,7 @@ dependencies = [
|
||||
"humantime",
|
||||
"indexmap",
|
||||
"indoc",
|
||||
"itertools",
|
||||
"itertools 0.15.0",
|
||||
"libc",
|
||||
"log",
|
||||
"mach2",
|
||||
@@ -750,6 +750,15 @@ dependencies = [
|
||||
"either",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itertools"
|
||||
version = "0.15.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
||||
dependencies = [
|
||||
"either",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itoa"
|
||||
version = "1.0.17"
|
||||
@@ -1232,7 +1241,7 @@ dependencies = [
|
||||
"compact_str",
|
||||
"critical-section",
|
||||
"hashbrown 0.17.1",
|
||||
"itertools",
|
||||
"itertools 0.14.0",
|
||||
"kasuari",
|
||||
"lru",
|
||||
"palette",
|
||||
@@ -1266,7 +1275,7 @@ dependencies = [
|
||||
"hashbrown 0.17.1",
|
||||
"indoc",
|
||||
"instability",
|
||||
"itertools",
|
||||
"itertools 0.14.0",
|
||||
"line-clipping",
|
||||
"ratatui-core",
|
||||
"serde",
|
||||
@@ -1857,7 +1866,7 @@ version = "2.0.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "16b380a1238663e5f8a691f9039c73e1cdae598a30e9855f541d29b08b53e9a5"
|
||||
dependencies = [
|
||||
"itertools",
|
||||
"itertools 0.14.0",
|
||||
"unicode-segmentation",
|
||||
"unicode-width",
|
||||
]
|
||||
|
||||
+5
-21
@@ -75,12 +75,7 @@ generate_schema = ["schemars", "serde_json", "strum"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.101"
|
||||
clap = { version = "4.5.57", features = [
|
||||
"default",
|
||||
"cargo",
|
||||
"wrap_help",
|
||||
"derive",
|
||||
] }
|
||||
clap = { version = "4.5.57", features = ["default", "cargo", "wrap_help", "derive"] }
|
||||
concat-string = "1.0.1"
|
||||
crossterm = "0.29.0"
|
||||
ctrlc = { version = "3.5.0", features = ["termination"] }
|
||||
@@ -88,10 +83,8 @@ dirs = "6.0.0"
|
||||
humantime = "2.3.0"
|
||||
indexmap = "2.13.0"
|
||||
indoc = "2.0.7"
|
||||
itertools = "0.14.0"
|
||||
nvml-wrapper = { version = "0.12.1", optional = true, features = [
|
||||
"legacy-functions",
|
||||
] }
|
||||
itertools = "0.15.0"
|
||||
nvml-wrapper = { version = "0.12.1", optional = true, features = ["legacy-functions"] }
|
||||
ratatui = { version = "0.30.2", default-features = false, features = [
|
||||
"unstable-rendered-line-info",
|
||||
"layout-cache",
|
||||
@@ -112,11 +105,7 @@ unicode-width = "0.2.2"
|
||||
# Used for logging. Mostly a debugging tool.
|
||||
fern = { version = "0.7.1", optional = true }
|
||||
log = { version = "0.4.29", optional = true }
|
||||
time = { version = "0.3.47", features = [
|
||||
"local-offset",
|
||||
"formatting",
|
||||
"macros",
|
||||
], optional = true }
|
||||
time = { version = "0.3.47", features = ["local-offset", "formatting", "macros"], optional = true }
|
||||
|
||||
# These are just used for JSON schema generation.
|
||||
schemars = { version = "1.2.1", optional = true }
|
||||
@@ -159,12 +148,7 @@ tempfile = { version = "3.23.0", default-features = false }
|
||||
portable-pty = "0.9.0"
|
||||
|
||||
[build-dependencies]
|
||||
clap = { version = "4.5.57", features = [
|
||||
"default",
|
||||
"cargo",
|
||||
"wrap_help",
|
||||
"derive",
|
||||
] }
|
||||
clap = { version = "4.5.57", features = ["default", "cargo", "wrap_help", "derive"] }
|
||||
clap_complete = "4.5.62"
|
||||
clap_complete_nushell = "4.5.10"
|
||||
clap_complete_fig = "4.5.2"
|
||||
|
||||
Reference in New Issue
Block a user