Skip to content

Commit

Permalink
Update columnar to 0.3, make workspace dependency (#639)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
antiguru authored Feb 12, 2025
1 parent 04894ca commit 15f9f28
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ resolver = "2"
[workspace.package]
edition = "2021"

[workspace.dependencies]
columnar = "0.3"

[profile.release]
opt-level = 3
debug = true
Expand Down
2 changes: 1 addition & 1 deletion communication/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion timely/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 15f9f28

Please sign in to comment.