From bbf55768726d4012309a4459dfe5821dd498c6b6 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Thu, 2 Mar 2023 20:05:41 +0100 Subject: [PATCH] dep updates --- Cargo.toml | 12 ++++++------ haesli_core/Cargo.toml | 10 +++++----- haesli_dashboard/Cargo.toml | 14 +++++++------- haesli_messaging/Cargo.toml | 6 +++--- haesli_transport/Cargo.toml | 20 ++++++++++---------- xtask/Cargo.toml | 8 ++++---- 6 files changed, 35 insertions(+), 35 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0ebb9a7..a8e55ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,15 +17,15 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.53" +anyhow = "1.0.69" haesli_core = { path = "./haesli_core" } haesli_dashboard = { path = "./haesli_dashboard" } haesli_messaging = { path = "./haesli_messaging" } haesli_transport = { path = "./haesli_transport" } -clap = { version = "3.1.5", features = ["derive"] } -tokio = { version = "1.16.1", features = ["full"] } -tracing = "0.1.30" -tracing-subscriber = { version = "0.3.8", features = ["env-filter"] } -tracing-tree = "0.2.0" +clap = { version = "3.2.23", features = ["derive"] } +tokio = { version = "1.26.0", features = ["full"] } +tracing = "0.1.37" +tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } +tracing-tree = "0.2.2" [features] diff --git a/haesli_core/Cargo.toml b/haesli_core/Cargo.toml index ecc7b90..08abc93 100644 --- a/haesli_core/Cargo.toml +++ b/haesli_core/Cargo.toml @@ -7,12 +7,12 @@ edition = "2021" [dependencies] haesli_datastructure = { path = "../haesli_datastructure" } -bytes = "1.1.0" -parking_lot = "0.12.0" +bytes = "1.4.0" +parking_lot = "0.12.1" rand = "0.8.5" -smallvec = { version = "1.8.0", features = ["union"] } -thiserror = "1.0.30" -tokio = { version = "1.17.0", features = ["sync"] } +smallvec = { version = "1.10.0", features = ["union"] } +thiserror = "1.0.38" +tokio = { version = "1.26.0", features = ["sync"] } uuid = "0.8.2" [features] diff --git a/haesli_dashboard/Cargo.toml b/haesli_dashboard/Cargo.toml index dc35000..217cec0 100644 --- a/haesli_dashboard/Cargo.toml +++ b/haesli_dashboard/Cargo.toml @@ -7,17 +7,17 @@ edition = "2021" [dependencies] haesli_core = { path = "../haesli_core" } -anyhow = "1.0.55" +anyhow = "1.0.69" axum = "0.4.8" mime_guess = "2.0.4" -serde = { version = "1.0.136", features = ["derive"] } -tokio = { version = "1.17.0", features = ["full"] } -tower = "0.4.12" -tower-http = { version = "0.2.3", features = ["cors"] } -tracing = "0.1.31" +serde = { version = "1.0.152", features = ["derive"] } +tokio = { version = "1.26.0", features = ["full"] } +tower = "0.4.13" +tower-http = { version = "0.2.5", features = ["cors"] } +tracing = "0.1.37" zip = "0.5.13" [build-dependencies] -anyhow = "1.0.55" +anyhow = "1.0.69" walkdir = "2.3.2" zip = "0.5.13" diff --git a/haesli_messaging/Cargo.toml b/haesli_messaging/Cargo.toml index 2506934..bcba15e 100644 --- a/haesli_messaging/Cargo.toml +++ b/haesli_messaging/Cargo.toml @@ -8,8 +8,8 @@ edition = "2021" [dependencies] haesli_core = { path = "../haesli_core" } haesli_datastructure = { path = "../haesli_datastructure" } -parking_lot = "0.12.0" -tracing = "0.1.31" -tokio = { version = "1.17.0", features = ["full"] } +parking_lot = "0.12.1" +tracing = "0.1.37" +tokio = { version = "1.26.0", features = ["full"] } [features] diff --git a/haesli_transport/Cargo.toml b/haesli_transport/Cargo.toml index 8203925..b496f06 100644 --- a/haesli_transport/Cargo.toml +++ b/haesli_transport/Cargo.toml @@ -7,20 +7,20 @@ edition = "2021" [dependencies] haesli_core = { path = "../haesli_core" } -anyhow = "1.0.53" -bytes = "1.1.0" -nom = "7.1.0" -once_cell = "1.9.0" -rand = "0.8.4" -regex = "1.5.4" -thiserror = "1.0.30" -tokio = { version = "1.16.1", features = ["full"] } -tracing = "0.1.30" +anyhow = "1.0.69" +bytes = "1.4.0" +nom = "7.1.3" +once_cell = "1.17.1" +rand = "0.8.5" +regex = "1.7.1" +thiserror = "1.0.38" +tokio = { version = "1.26.0", features = ["full"] } +tracing = "0.1.37" [features] [dev-dependencies] -criterion = "0.3.5" +criterion = "0.3.6" [[bench]] name = "parser" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index ed4adde..e0af9e6 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.54" -clap = { version = "3.1.1", features = ["derive"] } -heck = "0.4.0" -itertools = "0.10.3" +anyhow = "1.0.69" +clap = { version = "3.2.23", features = ["derive"] } +heck = "0.4.1" +itertools = "0.10.5" strong-xml = "0.6.3"