Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
robert3005 committed Mar 20, 2024
1 parent 44eed85 commit 6703b54
Show file tree
Hide file tree
Showing 12 changed files with 126 additions and 106 deletions.
105 changes: 54 additions & 51 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,20 @@ include = [
edition = "2021"
rust-version = "1.76"

[workspace.dependencies]
arrow-array = "51.0.0"
arrow-buffer = "51.0.0"
arrow-schema = "51.0.0"
humansize = "2.1.3"
linkme = "0.3.25"
half = { version = "2.4.0", features = ["std", "num-traits"] }
num-traits = "0.2.18"
itertools = "0.12.1"
log = "0.4.21"
num_enum = "0.7.2"
leb128 = "0.2.5"
thiserror = "1.0.58"

[workspace.lints.rust]
warnings = "deny"

Expand Down
12 changes: 6 additions & 6 deletions bench-vortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ rust-version = { workspace = true }
workspace = true

[dependencies]
arrow-array = "50.0.0"
vortex-alp = { path = "../vortex-alp" }
arrow-array = { workspace = true }
vortex-array = { path = "../vortex-array" }
vortex-alp = { path = "../vortex-alp" }
vortex-dict = { path = "../vortex-dict" }
vortex-fastlanes = { path = "../vortex-fastlanes" }
vortex-ree = { path = "../vortex-ree" }
vortex-roaring = { path = "../vortex-roaring" }
vortex-schema = { path = "../vortex-schema" }
vortex-zigzag = { path = "../vortex-zigzag" }
itertools = "0.12.1"
reqwest = { version = "0.11.24", features = ["blocking"] }
parquet = "50.0.0"
log = "0.4.20"
itertools = { workspace = true }
reqwest = { version = "0.11.26", features = ["blocking"] }
parquet = "51.0.0"
log = { workspace = true }

[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
Expand Down
8 changes: 4 additions & 4 deletions pyvortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ name = "pyvortex"
crate-type = ["rlib", "cdylib"]

[dependencies]
arrow = { version = "50.0.0", features = ["pyarrow"] }
vortex-alp = { path = "../vortex-alp" }
arrow = { version = "51.0.0", features = ["pyarrow"] }
vortex-array = { path = "../vortex-array" }
vortex-alp = { path = "../vortex-alp" }
vortex-dict = { path = "../vortex-dict" }
vortex-fastlanes = { path = "../vortex-fastlanes" }
vortex-ree = { path = "../vortex-ree" }
vortex-roaring = { path = "../vortex-roaring" }
vortex-schema = { path = "../vortex-schema" }
vortex-zigzag = { path = "../vortex-zigzag" }
itertools = "0.12.1"
log = "0.4.20"
itertools = { workspace = true }
log = { workspace = true }
paste = "1.0.14"
pyo3 = { version = "0.20.2", features = ["extension-module", "abi3-py311"] }
pyo3-log = "0.9.0"
Expand Down
8 changes: 4 additions & 4 deletions vortex-alp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ workspace = true
[dependencies]
vortex-array = { path = "../vortex-array" }
vortex-schema = { path = "../vortex-schema" }
linkme = "0.3.22"
itertools = "0.12.1"
num-traits = "0.2.18"
log = { version = "0.4.20", features = [] }
linkme = { workspace = true }
itertools = { workspace = true }
num-traits = { workspace = true }
log = { workspace = true }

[dev-dependencies]
divan = "0.1.14"
Expand Down
Loading

0 comments on commit 6703b54

Please sign in to comment.