Hoist itertools dependency to workspace level (#8417)

This PR hoists the `itertools` dependency to the workspace level.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-02-25 20:37:52 -05:00 committed by GitHub
parent 841e010fa4
commit d8276b0f0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 22 additions and 21 deletions

16
Cargo.lock generated
View File

@ -1517,7 +1517,7 @@ dependencies = [
"collections", "collections",
"editor", "editor",
"gpui", "gpui",
"itertools 0.10.5", "itertools 0.11.0",
"language", "language",
"outline", "outline",
"project", "project",
@ -3109,7 +3109,7 @@ dependencies = [
"git", "git",
"gpui", "gpui",
"indoc", "indoc",
"itertools 0.10.5", "itertools 0.11.0",
"language", "language",
"lazy_static", "lazy_static",
"linkify", "linkify",
@ -4149,7 +4149,7 @@ dependencies = [
"futures 0.3.28", "futures 0.3.28",
"gpui_macros", "gpui_macros",
"image", "image",
"itertools 0.10.5", "itertools 0.11.0",
"lazy_static", "lazy_static",
"linkme", "linkme",
"log", "log",
@ -5725,7 +5725,7 @@ dependencies = [
"git", "git",
"gpui", "gpui",
"indoc", "indoc",
"itertools 0.10.5", "itertools 0.11.0",
"language", "language",
"lazy_static", "lazy_static",
"log", "log",
@ -6996,7 +6996,7 @@ dependencies = [
"globset", "globset",
"gpui", "gpui",
"ignore", "ignore",
"itertools 0.10.5", "itertools 0.11.0",
"language", "language",
"log", "log",
"lsp", "lsp",
@ -9514,7 +9514,7 @@ dependencies = [
"dirs 4.0.0", "dirs 4.0.0",
"futures 0.3.28", "futures 0.3.28",
"gpui", "gpui",
"itertools 0.10.5", "itertools 0.11.0",
"lazy_static", "lazy_static",
"libc", "libc",
"mio-extras", "mio-extras",
@ -9547,7 +9547,7 @@ dependencies = [
"editor", "editor",
"futures 0.3.28", "futures 0.3.28",
"gpui", "gpui",
"itertools 0.10.5", "itertools 0.11.0",
"language", "language",
"lazy_static", "lazy_static",
"libc", "libc",
@ -11849,7 +11849,7 @@ dependencies = [
"fs", "fs",
"futures 0.3.28", "futures 0.3.28",
"gpui", "gpui",
"itertools 0.10.5", "itertools 0.11.0",
"language", "language",
"lazy_static", "lazy_static",
"log", "log",

View File

@ -206,8 +206,9 @@ git2 = { version = "0.15", default-features = false }
globset = "0.4" globset = "0.4"
hex = "0.4.3" hex = "0.4.3"
indoc = "1" indoc = "1"
# We explicitly disable a http2 support in isahc. # We explicitly disable http2 support in isahc.
isahc = { version = "1.7.2", default-features = false, features = ["static-curl", "text-decoding"] } isahc = { version = "1.7.2", default-features = false, features = ["static-curl", "text-decoding"] }
itertools = "0.11.0"
lazy_static = "1.4.0" lazy_static = "1.4.0"
linkify = "0.10.0" linkify = "0.10.0"
log = { version = "0.4.16", features = ["kv_unstable_serde"] } log = { version = "0.4.16", features = ["kv_unstable_serde"] }

View File

@ -13,7 +13,7 @@ doctest = false
collections.workspace = true collections.workspace = true
editor.workspace = true editor.workspace = true
gpui.workspace = true gpui.workspace = true
itertools = "0.10" itertools.workspace = true
language.workspace = true language.workspace = true
outline.workspace = true outline.workspace = true
project.workspace = true project.workspace = true

View File

@ -14,6 +14,6 @@ path = "src/color.rs"
doctest = true doctest = true
[dependencies] [dependencies]
itertools = { version = "0.11.0", optional = true } itertools = { workspace = true, optional = true }
palette = "0.7.3" palette = "0.7.3"
story = { workspace = true, optional = true } story = { workspace = true, optional = true }

View File

@ -37,7 +37,7 @@ fuzzy.workspace = true
git.workspace = true git.workspace = true
gpui.workspace = true gpui.workspace = true
indoc = "1.0.4" indoc = "1.0.4"
itertools = "0.10" itertools.workspace = true
language.workspace = true language.workspace = true
lazy_static.workspace = true lazy_static.workspace = true
linkify.workspace = true linkify.workspace = true

View File

@ -41,7 +41,7 @@ futures.workspace = true
font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "5a5c4d4" } font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "5a5c4d4" }
gpui_macros.workspace = true gpui_macros.workspace = true
image = "0.23" image = "0.23"
itertools = "0.10" itertools.workspace = true
lazy_static.workspace = true lazy_static.workspace = true
linkme = "0.3" linkme = "0.3"
log.workspace = true log.workspace = true

View File

@ -31,7 +31,7 @@ futures.workspace = true
git.workspace = true git.workspace = true
gpui.workspace = true gpui.workspace = true
indoc = "1.0.4" indoc = "1.0.4"
itertools = "0.10" itertools.workspace = true
language.workspace = true language.workspace = true
lazy_static.workspace = true lazy_static.workspace = true
log.workspace = true log.workspace = true

View File

@ -36,7 +36,7 @@ git.workspace = true
globset.workspace = true globset.workspace = true
gpui.workspace = true gpui.workspace = true
ignore = "0.4" ignore = "0.4"
itertools = "0.10" itertools.workspace = true
language.workspace = true language.workspace = true
log.workspace = true log.workspace = true
lsp.workspace = true lsp.workspace = true

View File

@ -18,7 +18,7 @@ db.workspace = true
dirs = "4.0.0" dirs = "4.0.0"
futures.workspace = true futures.workspace = true
gpui.workspace = true gpui.workspace = true
itertools = "0.10" itertools.workspace = true
lazy_static.workspace = true lazy_static.workspace = true
libc = "0.2" libc = "0.2"
mio-extras = "2.0.6" mio-extras = "2.0.6"

View File

@ -17,7 +17,7 @@ dirs = "4.0.0"
editor.workspace = true editor.workspace = true
futures.workspace = true futures.workspace = true
gpui.workspace = true gpui.workspace = true
itertools = "0.10" itertools.workspace = true
language.workspace = true language.workspace = true
lazy_static.workspace = true lazy_static.workspace = true
libc = "0.2" libc = "0.2"

View File

@ -23,7 +23,7 @@ fs.workspace = true
futures.workspace = true futures.workspace = true
gpui.workspace = true gpui.workspace = true
indexmap = { version = "1.6.2", features = ["serde"] } indexmap = { version = "1.6.2", features = ["serde"] }
itertools = { version = "0.11.0", optional = true } itertools = { workspace = true, optional = true }
palette = { version = "0.7.3", default-features = false, features = ["std"] } palette = { version = "0.7.3", default-features = false, features = ["std"] }
parking_lot.workspace = true parking_lot.workspace = true
refineable.workspace = true refineable.workspace = true

View File

@ -13,7 +13,7 @@ path = "src/ui.rs"
anyhow.workspace = true anyhow.workspace = true
chrono.workspace = true chrono.workspace = true
gpui.workspace = true gpui.workspace = true
itertools = { version = "0.11.0", optional = true } itertools = { workspace = true, optional = true }
menu.workspace = true menu.workspace = true
rand = "0.8" rand = "0.8"
serde.workspace = true serde.workspace = true

View File

@ -32,7 +32,7 @@ derive_more.workspace = true
fs.workspace = true fs.workspace = true
futures.workspace = true futures.workspace = true
gpui.workspace = true gpui.workspace = true
itertools = "0.10" itertools.workspace = true
language.workspace = true language.workspace = true
lazy_static.workspace = true lazy_static.workspace = true
log.workspace = true log.workspace = true

View File

@ -60,7 +60,7 @@ image = "0.23"
indexmap = "1.6.2" indexmap = "1.6.2"
install_cli.workspace = true install_cli.workspace = true
isahc.workspace = true isahc.workspace = true
itertools = "0.11" itertools.workspace = true
journal.workspace = true journal.workspace = true
language.workspace = true language.workspace = true
language_selector.workspace = true language_selector.workspace = true