diff --git a/Cargo.lock b/Cargo.lock index dbe829a..afa2c4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 4 + [[package]] name = "accept" version = "0.0.0" @@ -374,9 +376,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.10.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d572918e350e82412fe766d24b15e6682fb2ed2bbe018280caa810397cb319" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ "either", ] diff --git a/crates/lua-analyzer/Cargo.toml b/crates/lua-analyzer/Cargo.toml index c87e39f..d76b9d6 100644 --- a/crates/lua-analyzer/Cargo.toml +++ b/crates/lua-analyzer/Cargo.toml @@ -21,7 +21,7 @@ serde = { version = "1.0.126", features = ["derive"] } serde_json = "1.0.64" serde_path_to_error = "0.1.4" simplelog = "0.10.0" -itertools = "0.10.0" +itertools = "0.14.0" vfs = { path = "../vfs", version = "0.0.0" } ide = { path = "../ide", version = "0.0.0" } diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index ad8386e..70747ea 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -11,7 +11,7 @@ doctest = false [dependencies] drop_bomb = "0.1.5" -itertools = "0.10.0" +itertools = "0.14.0" rowan = "0.12.6" thiserror = "1.0.24" diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml index e157dd7..2a891cc 100644 --- a/crates/syntax/Cargo.toml +++ b/crates/syntax/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/oberblastmeister/lua-analyzer" doctest = false [dependencies] -itertools = "0.10.0" +itertools = "0.14.0" rowan = "0.12.6" thiserror = "1.0.24"