From eebd21eb149653edb7811f412fcf08c1943849fc Mon Sep 17 00:00:00 2001 From: Moritz Hoffmann Date: Wed, 12 Feb 2025 19:48:04 +0100 Subject: [PATCH] Update columnar to 0.3, make workspace dependency Update to columnar 0.3, and turn the dependency into a workspace dependency. This forces all uses of columnar to a single version. Signed-off-by: Moritz Hoffmann --- Cargo.toml | 3 +++ communication/Cargo.toml | 2 +- timely/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d0e8bad34..660f267c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,6 +12,9 @@ resolver = "2" [workspace.package] edition = "2021" +[workspace.dependencies] +columnar = "0.3" + [profile.release] opt-level = 3 debug = true diff --git a/communication/Cargo.toml b/communication/Cargo.toml index 7f204b8eb..cd0aab22c 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -17,7 +17,7 @@ license = "MIT" default = ["getopts"] [dependencies] -columnar = "0.2" +columnar = { workspace = true } getopts = { version = "0.2.21", optional = true } byteorder = "1.5" serde = { version = "1.0", features = ["derive"] } diff --git a/timely/Cargo.toml b/timely/Cargo.toml index 7c9dd0e21..4656c8bc3 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -19,7 +19,7 @@ default = ["getopts"] getopts = ["getopts-dep", "timely_communication/getopts"] [dependencies] -columnar = "0.3" +columnar = { workspace = true } getopts-dep = { package = "getopts", version = "0.2.21", optional = true } bincode = { version = "1.0" } byteorder = "1.5"