From d70b6ce026d7c111249f5e07a131963e43603bf5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 00:29:32 +0000 Subject: [PATCH] Update itertools requirement in /compiler/formatter Updates the requirements on [itertools](https://github.com/rust-itertools/itertools) to permit the latest version. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- compiler/formatter/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/formatter/Cargo.toml b/compiler/formatter/Cargo.toml index eb7a51573..3f101e8ef 100644 --- a/compiler/formatter/Cargo.toml +++ b/compiler/formatter/Cargo.toml @@ -10,6 +10,6 @@ rust-version = "1.56" candy_frontend = { path = "../frontend" } derive_more = "0.99.17" extension-trait = "1.0.1" -itertools = "0.11.0" +itertools = "0.12.0" traversal = "0.1.2" unicode-width = "0.1.10"