diff --git a/Cargo.lock b/Cargo.lock index 6a9e294f3be2c30970cc8a38950d084ccac98775..0c7b9f9d61e5dd513bc6b2defe04a0ad54a37dd5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1517,7 +1517,7 @@ dependencies = [ "collections", "editor", "gpui", - "itertools 0.10.5", + "itertools 0.11.0", "language", "outline", "project", @@ -3109,7 +3109,7 @@ dependencies = [ "git", "gpui", "indoc", - "itertools 0.10.5", + "itertools 0.11.0", "language", "lazy_static", "linkify", @@ -4149,7 +4149,7 @@ dependencies = [ "futures 0.3.28", "gpui_macros", "image", - "itertools 0.10.5", + "itertools 0.11.0", "lazy_static", "linkme", "log", @@ -5725,7 +5725,7 @@ dependencies = [ "git", "gpui", "indoc", - "itertools 0.10.5", + "itertools 0.11.0", "language", "lazy_static", "log", @@ -6996,7 +6996,7 @@ dependencies = [ "globset", "gpui", "ignore", - "itertools 0.10.5", + "itertools 0.11.0", "language", "log", "lsp", @@ -9514,7 +9514,7 @@ dependencies = [ "dirs 4.0.0", "futures 0.3.28", "gpui", - "itertools 0.10.5", + "itertools 0.11.0", "lazy_static", "libc", "mio-extras", @@ -9547,7 +9547,7 @@ dependencies = [ "editor", "futures 0.3.28", "gpui", - "itertools 0.10.5", + "itertools 0.11.0", "language", "lazy_static", "libc", @@ -11849,7 +11849,7 @@ dependencies = [ "fs", "futures 0.3.28", "gpui", - "itertools 0.10.5", + "itertools 0.11.0", "language", "lazy_static", "log", diff --git a/Cargo.toml b/Cargo.toml index cad3b3c209aa0efd78b7bd6fed0c590908b5be5f..4bc18e024163d4bf18ff453aa437108955a6af4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -206,8 +206,9 @@ git2 = { version = "0.15", default-features = false } globset = "0.4" hex = "0.4.3" 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"] } +itertools = "0.11.0" lazy_static = "1.4.0" linkify = "0.10.0" log = { version = "0.4.16", features = ["kv_unstable_serde"] } diff --git a/crates/breadcrumbs/Cargo.toml b/crates/breadcrumbs/Cargo.toml index 57724663ca85b148321515fa207c296928ef9e04..cef0a2ac0bdd0bdb5efcd0fa52b8bd1ec0fefb82 100644 --- a/crates/breadcrumbs/Cargo.toml +++ b/crates/breadcrumbs/Cargo.toml @@ -13,7 +13,7 @@ doctest = false collections.workspace = true editor.workspace = true gpui.workspace = true -itertools = "0.10" +itertools.workspace = true language.workspace = true outline.workspace = true project.workspace = true diff --git a/crates/color/Cargo.toml b/crates/color/Cargo.toml index e8530befdf579729353c54d74199f6f2a46a324a..90f1109753f412cc21d356b451b1630013dc3390 100644 --- a/crates/color/Cargo.toml +++ b/crates/color/Cargo.toml @@ -14,6 +14,6 @@ path = "src/color.rs" doctest = true [dependencies] -itertools = { version = "0.11.0", optional = true } +itertools = { workspace = true, optional = true } palette = "0.7.3" story = { workspace = true, optional = true } diff --git a/crates/editor/Cargo.toml b/crates/editor/Cargo.toml index 2e2143567d98cde685e5d53824140062adea9e2a..c13d6362ffdd6ac37d75c23bc68fa305ab2e5696 100644 --- a/crates/editor/Cargo.toml +++ b/crates/editor/Cargo.toml @@ -37,7 +37,7 @@ fuzzy.workspace = true git.workspace = true gpui.workspace = true indoc = "1.0.4" -itertools = "0.10" +itertools.workspace = true language.workspace = true lazy_static.workspace = true linkify.workspace = true diff --git a/crates/gpui/Cargo.toml b/crates/gpui/Cargo.toml index 332fdece6abcc14de32ce3ad205aef55bfe7f3c9..cd0106a8963f3f6eb11623d24960755ecafe0fde 100644 --- a/crates/gpui/Cargo.toml +++ b/crates/gpui/Cargo.toml @@ -41,7 +41,7 @@ futures.workspace = true font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "5a5c4d4" } gpui_macros.workspace = true image = "0.23" -itertools = "0.10" +itertools.workspace = true lazy_static.workspace = true linkme = "0.3" log.workspace = true diff --git a/crates/multi_buffer/Cargo.toml b/crates/multi_buffer/Cargo.toml index ed3993400a3665241bd7798d425d9be74985eba2..b62c73d0b27d207891bc0210189ea2f1b0555725 100644 --- a/crates/multi_buffer/Cargo.toml +++ b/crates/multi_buffer/Cargo.toml @@ -31,7 +31,7 @@ futures.workspace = true git.workspace = true gpui.workspace = true indoc = "1.0.4" -itertools = "0.10" +itertools.workspace = true language.workspace = true lazy_static.workspace = true log.workspace = true diff --git a/crates/project/Cargo.toml b/crates/project/Cargo.toml index f02f36903d9b82275cdaea766fcbf63358f7fccc..56b4bc5fb4089f45cc395d7b1430361bc1e5446e 100644 --- a/crates/project/Cargo.toml +++ b/crates/project/Cargo.toml @@ -36,7 +36,7 @@ git.workspace = true globset.workspace = true gpui.workspace = true ignore = "0.4" -itertools = "0.10" +itertools.workspace = true language.workspace = true log.workspace = true lsp.workspace = true diff --git a/crates/terminal/Cargo.toml b/crates/terminal/Cargo.toml index 4b95acdbd1cf72c0cb54a0681d78059614d158ac..6218d8034476d0ee3daca67de8c360ba08114655 100644 --- a/crates/terminal/Cargo.toml +++ b/crates/terminal/Cargo.toml @@ -18,7 +18,7 @@ db.workspace = true dirs = "4.0.0" futures.workspace = true gpui.workspace = true -itertools = "0.10" +itertools.workspace = true lazy_static.workspace = true libc = "0.2" mio-extras = "2.0.6" diff --git a/crates/terminal_view/Cargo.toml b/crates/terminal_view/Cargo.toml index b5805c577f6ce278e22932602074cf63937072e6..8edbb085cd91f5da25382d8c2fbdc7ed138e75cc 100644 --- a/crates/terminal_view/Cargo.toml +++ b/crates/terminal_view/Cargo.toml @@ -17,7 +17,7 @@ dirs = "4.0.0" editor.workspace = true futures.workspace = true gpui.workspace = true -itertools = "0.10" +itertools.workspace = true language.workspace = true lazy_static.workspace = true libc = "0.2" diff --git a/crates/theme/Cargo.toml b/crates/theme/Cargo.toml index c060627ad61a382aca3807c7fa47f4ad59e1132a..43be9094dbd1c9a8b4495273e898e35184526045 100644 --- a/crates/theme/Cargo.toml +++ b/crates/theme/Cargo.toml @@ -23,7 +23,7 @@ fs.workspace = true futures.workspace = true gpui.workspace = true 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"] } parking_lot.workspace = true refineable.workspace = true diff --git a/crates/ui/Cargo.toml b/crates/ui/Cargo.toml index 10b92744a7f8971dcc27e77ee627cfd6ea35ca43..29ea2d58586bf466c7fe5f7780005ae73ed60c85 100644 --- a/crates/ui/Cargo.toml +++ b/crates/ui/Cargo.toml @@ -13,7 +13,7 @@ path = "src/ui.rs" anyhow.workspace = true chrono.workspace = true gpui.workspace = true -itertools = { version = "0.11.0", optional = true } +itertools = { workspace = true, optional = true } menu.workspace = true rand = "0.8" serde.workspace = true diff --git a/crates/workspace/Cargo.toml b/crates/workspace/Cargo.toml index 9182f27bf2c7e2618f20b98f9283c05444df1861..afc607defb516e14db05facd63e799e6e07ceca3 100644 --- a/crates/workspace/Cargo.toml +++ b/crates/workspace/Cargo.toml @@ -32,7 +32,7 @@ derive_more.workspace = true fs.workspace = true futures.workspace = true gpui.workspace = true -itertools = "0.10" +itertools.workspace = true language.workspace = true lazy_static.workspace = true log.workspace = true diff --git a/crates/zed/Cargo.toml b/crates/zed/Cargo.toml index 0d04f80203403ceaafbed68f9220885f2b6e7495..b23436506bc14fa7bca7bd8b33d5f9a2ed309d2d 100644 --- a/crates/zed/Cargo.toml +++ b/crates/zed/Cargo.toml @@ -60,7 +60,7 @@ image = "0.23" indexmap = "1.6.2" install_cli.workspace = true isahc.workspace = true -itertools = "0.11" +itertools.workspace = true journal.workspace = true language.workspace = true language_selector.workspace = true