From 910e87774f2f511373f3dc9cc1831db081a98493 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Wed, 17 Dec 2025 09:29:47 +0100 Subject: [PATCH] chore: upgrade zrx to fix presence of two versions of zrx-graph Signed-off-by: squidfunk --- Cargo.lock | 44 ++++++++------------------------------------ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 37 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dc1c4d3..b0be42f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1346,16 +1346,16 @@ dependencies = [ [[package]] name = "zrx" -version = "0.0.4" +version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c93651ec0f0deb7feadd6fd5d9716d45749678f08ca64856ba9e558f2520d53" +checksum = "c14c304232173e0dfc6b4f5e836f0a9ae2fdf550413957131b8036e5b9e6269a" dependencies = [ "zrx-diagnostic", "zrx-executor", - "zrx-graph 0.0.2", + "zrx-graph", "zrx-id", "zrx-path", - "zrx-scheduler 0.0.2", + "zrx-scheduler", "zrx-store", "zrx-stream", ] @@ -1376,16 +1376,6 @@ dependencies = [ "thiserror", ] -[[package]] -name = "zrx-graph" -version = "0.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8deb42a334884f7d30d4ceba77db865fe22ae0db9a2678e90d1449527c935ad" -dependencies = [ - "ahash", - "thiserror", -] - [[package]] name = "zrx-graph" version = "0.0.2" @@ -1414,23 +1404,6 @@ version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d578267e852d4f325ce124ecbffe0530d9f9013d58a3cfacec75daf04ac40d0b" -[[package]] -name = "zrx-scheduler" -version = "0.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "977abb2e19cbe3768d29eb7613f2fec66592ae44ccb673585b72b8ad1f17dda1" -dependencies = [ - "ahash", - "crossbeam", - "slab", - "thiserror", - "zrx-diagnostic", - "zrx-executor", - "zrx-graph 0.0.1", - "zrx-id", - "zrx-store", -] - [[package]] name = "zrx-scheduler" version = "0.0.2" @@ -1443,7 +1416,7 @@ dependencies = [ "thiserror", "zrx-diagnostic", "zrx-executor", - "zrx-graph 0.0.2", + "zrx-graph", "zrx-id", "zrx-store", ] @@ -1461,14 +1434,13 @@ dependencies = [ [[package]] name = "zrx-stream" -version = "0.0.1" +version = "0.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7c6087ba332dd45fc7a6f364e99f30d28405374ffabe7ac6787fc402ba86473" +checksum = "4ec48ba80e68dea8c842ff6dca22a588b9010eb2d773585b837498bf880446e6" dependencies = [ "ahash", "thiserror", - "zrx-graph 0.0.1", "zrx-id", - "zrx-scheduler 0.0.1", + "zrx-scheduler", "zrx-store", ] diff --git a/Cargo.toml b/Cargo.toml index 08c1485..7034906 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,4 +56,4 @@ tempfile = "3.23" thiserror = "2.0" toml = "0.9" toml_edit = "0.23" -zrx = "0.0.4" +zrx = "0.0.5"