From 4a116518e5e94d8f4eb50dfb76211a87ed6ad632 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 7 Mar 2025 11:10:49 +0100 Subject: [PATCH 1/3] github: update `reqwest` dependency --- ghostflow-github/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghostflow-github/Cargo.toml b/ghostflow-github/Cargo.toml index 63fd17d1..9c9f362a 100644 --- a/ghostflow-github/Cargo.toml +++ b/ghostflow-github/Cargo.toml @@ -19,7 +19,7 @@ graphql_client = "~0.14" itertools = "~0.10" jsonwebtoken = "^9.0" log = "~0.4.4" -reqwest = { version = "~0.11", features = ["blocking", "json"] } +reqwest = { version = "~0.12", features = ["blocking", "json"] } serde_json = "^1.0" thiserror = "^1.0.2" ttl_cache = "~0.5" -- GitLab From 2341d0147c3bf7af1b0423e5539ef7684c5bcd40 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 7 Mar 2025 11:12:03 +0100 Subject: [PATCH 2/3] cargo: update `itertools` dependencies --- ghostflow-cli/Cargo.toml | 2 +- ghostflow-github/Cargo.toml | 2 +- ghostflow-gitlab/Cargo.toml | 2 +- ghostflow/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ghostflow-cli/Cargo.toml b/ghostflow-cli/Cargo.toml index 5c8d694e..68bc409b 100644 --- a/ghostflow-cli/Cargo.toml +++ b/ghostflow-cli/Cargo.toml @@ -23,7 +23,7 @@ git-checks-config = "^0.2.1" git-checks-core = "^1.2.2" git-checks = { version = "^4.2", features = ["config"] } git-workarea = "^4.2" -itertools = "~0.10" +itertools = "~0.12" log = "~0.4.4" rayon = "^1.0" serde = { version = "^1.0", features = ["derive"] } diff --git a/ghostflow-github/Cargo.toml b/ghostflow-github/Cargo.toml index 9c9f362a..1409fa49 100644 --- a/ghostflow-github/Cargo.toml +++ b/ghostflow-github/Cargo.toml @@ -16,7 +16,7 @@ edition.workspace = true [dependencies] chrono = { version = "~0.4.16", default-features = false, features = ["serde"] } graphql_client = "~0.14" -itertools = "~0.10" +itertools = "~0.12" jsonwebtoken = "^9.0" log = "~0.4.4" reqwest = { version = "~0.12", features = ["blocking", "json"] } diff --git a/ghostflow-gitlab/Cargo.toml b/ghostflow-gitlab/Cargo.toml index 6b868abd..e9deac17 100644 --- a/ghostflow-gitlab/Cargo.toml +++ b/ghostflow-gitlab/Cargo.toml @@ -16,7 +16,7 @@ edition.workspace = true [dependencies] chrono = { version = "~0.4.16", default-features = false } http = "^1" -itertools = "~0.10" +itertools = "~0.12" regex = "^1.0" serde = { version = "~1.0", features = ["derive"] } thiserror = "^1.0.2" diff --git a/ghostflow/Cargo.toml b/ghostflow/Cargo.toml index 3998c7ad..be0a0948 100644 --- a/ghostflow/Cargo.toml +++ b/ghostflow/Cargo.toml @@ -25,7 +25,7 @@ libc = "~0.2" derive_builder = "~0.11" digest = "~0.10" either = "^1.0" -itertools = "~0.10" +itertools = "~0.12" log = "~0.4.4" md-5 = "~0.10" rand = "~0.8" -- GitLab From 3286b6e0e870f12082fb9ef0ba2a2b219323d83c Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 7 Mar 2025 11:15:48 +0100 Subject: [PATCH 3/3] ghostflow: update `derive_builder` dependency --- ghostflow/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghostflow/Cargo.toml b/ghostflow/Cargo.toml index be0a0948..82f86746 100644 --- a/ghostflow/Cargo.toml +++ b/ghostflow/Cargo.toml @@ -22,7 +22,7 @@ git-checks = "^4.2" libc = "~0.2" [dependencies] -derive_builder = "~0.11" +derive_builder = "~0.12" digest = "~0.10" either = "^1.0" itertools = "~0.12" -- GitLab