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 527f847de..41c4ac04e 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 4bfabc9e6..2854fe138 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"