From 457586fbc3fd322445928ef2e1cee1f6f66ece5d Mon Sep 17 00:00:00 2001 From: Stefan Date: Tue, 10 Sep 2024 13:15:58 +0200 Subject: [PATCH] feat: upgrade dependencies --- Cargo.toml | 24 ++++++++++++------------ core/expression/src/lexer/error.rs | 1 - 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c58167db..3791b196 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,31 +6,31 @@ members = [ ] [workspace.dependencies] -ahash = "0.8.6" +ahash = "0.8.11" bincode = "2.0.0-rc.3" -bumpalo = "3.14.0" -chrono = "0.4.31" +bumpalo = "3.16.0" +chrono = "0.4.38" criterion = "0.5.1" -fastrand = "2.0.1" +fastrand = "2.1.0" humantime = "2.1.0" -tokio = "1.38.0" +tokio = "1.39.3" tokio-util = "0.7.11" once_cell = "1.19.0" -petgraph = "0.6.4" +petgraph = "0.6.5" phf = "0.11.2" -regex = "1.10.2" -regex-lite = "0.1.5" +regex = "1.10.6" +regex-lite = "0.1.6" strum = "0.26.2" strum_macros = "0.26.2" -serde = "1.0.195" -serde_json = "1.0.111" +serde = "1.0.208" +serde_json = "1.0.126" itertools = "0.13.0" rust_decimal = "1.33.1" rust_decimal_macros = "1.33.1" json_dotpath = "1.1.0" -anyhow = "1.0.79" -thiserror = "1.0.50" +anyhow = "1.0.86" +thiserror = "1.0.63" [profile.release] lto = true diff --git a/core/expression/src/lexer/error.rs b/core/expression/src/lexer/error.rs index 3ede61ca..e954582f 100644 --- a/core/expression/src/lexer/error.rs +++ b/core/expression/src/lexer/error.rs @@ -1,4 +1,3 @@ -use strum::ParseError; use thiserror::Error; #[derive(Debug, PartialEq, Eq, Clone, Error)]