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"