From 3f7dcbe517a1b451c61ab12885b3889e7bd91046 Mon Sep 17 00:00:00 2001 From: "Michael P. Jung" Date: Fri, 20 Sep 2024 11:44:54 +0200 Subject: [PATCH] Update itertools to version 0.13.0 --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7a69a5..4dc6cad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- Update `itertools` dependency to version `0.13.0` + ## [0.12.1] - 2024-05-07 - Add WASM support diff --git a/Cargo.toml b/Cargo.toml index c5b90ca..d3b75c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ tokio = { version = "1.0", features = ["sync"] } async-std = { version = "1.0", features = ["attributes"] } config = { version = "0.14", features = ["json"] } criterion = { version = "0.5", features = ["html_reports", "async_tokio"] } -itertools = "0.12" +itertools = "0.13" tokio = { version = "1.5.0", features = [ "macros", "rt",