Skip to content

Commit 15f9f28

Browse files
authored
Update columnar to 0.3, make workspace dependency (#639)
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 <antiguru@gmail.com>
1 parent 04894ca commit 15f9f28

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ resolver = "2"
1212
[workspace.package]
1313
edition = "2021"
1414

15+
[workspace.dependencies]
16+
columnar = "0.3"
17+
1518
[profile.release]
1619
opt-level = 3
1720
debug = true

communication/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ license = "MIT"
1717
default = ["getopts"]
1818

1919
[dependencies]
20-
columnar = "0.2"
20+
columnar = { workspace = true }
2121
getopts = { version = "0.2.21", optional = true }
2222
byteorder = "1.5"
2323
serde = { version = "1.0", features = ["derive"] }

timely/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default = ["getopts"]
1919
getopts = ["getopts-dep", "timely_communication/getopts"]
2020

2121
[dependencies]
22-
columnar = "0.3"
22+
columnar = { workspace = true }
2323
getopts-dep = { package = "getopts", version = "0.2.21", optional = true }
2424
bincode = { version = "1.0" }
2525
byteorder = "1.5"

0 commit comments

Comments
 (0)