From 57733735a1906b4b4d79edb1096baeb517f96164 Mon Sep 17 00:00:00 2001 From: Frank McSherry Date: Mon, 13 Apr 2026 17:00:30 -0400 Subject: [PATCH] Target timely 0.29 --- Cargo.toml | 4 ++-- advent_of_code_2017/Cargo.toml | 2 +- diagnostics/Cargo.toml | 1 + tpchlike/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 96ebd6d9d..9d26900bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,9 +23,9 @@ rust-version = "1.86" [workspace.dependencies] differential-dataflow = { path = "differential-dataflow", default-features = false, version = "0.22.0" } -#timely = { version = "0.28", default-features = false } +timely = { version = "0.29", default-features = false } columnar = { version = "0.12", default-features = false } -timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", default-features = false } +#timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", default-features = false } #timely = { path = "../timely-dataflow/timely/", default-features = false } [workspace.lints.clippy] diff --git a/advent_of_code_2017/Cargo.toml b/advent_of_code_2017/Cargo.toml index 95bdb542b..a120d2cd1 100644 --- a/advent_of_code_2017/Cargo.toml +++ b/advent_of_code_2017/Cargo.toml @@ -11,4 +11,4 @@ workspace = true [dependencies] differential-dataflow = { workspace = true } -timely = { git = "https://github.com/frankmcsherry/timely-dataflow" } +timely = { workspace = true } diff --git a/diagnostics/Cargo.toml b/diagnostics/Cargo.toml index c4a4f89a3..51d7d00d7 100644 --- a/diagnostics/Cargo.toml +++ b/diagnostics/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "diagnostics" version = "0.1.0" +publish = false edition.workspace = true rust-version.workspace = true diff --git a/tpchlike/Cargo.toml b/tpchlike/Cargo.toml index d4b0f20b9..aa23160bf 100644 --- a/tpchlike/Cargo.toml +++ b/tpchlike/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Frank McSherry "] rand = "0.6.5" regex = "0.2" #timely = "0.11" -timely = { git = "https://github.com/TimelyDataflow/timely-dataflow" } +timely = { workspace = true } differential-dataflow = { workspace = true } arrayvec = { git = "https://github.com/bluss/arrayvec" } abomonation = "0.7"