Skip to content

Commit

Permalink
move
Browse files Browse the repository at this point in the history
  • Loading branch information
robert3005 committed Mar 22, 2024
1 parent f0fca1e commit ed1fd0e
Show file tree
Hide file tree
Showing 13 changed files with 47 additions and 40 deletions.
16 changes: 4 additions & 12 deletions Cargo.lock

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

17 changes: 17 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,21 @@ edition = "2021"
rust-version = "1.76"

[workspace.dependencies]
ahash = "0.8.11"
allocator-api2 = "0.2.16"
arrayref = "0.3.7"
arrow = { version = "51.0.0", features = ["pyarrow"] }
arrow-array = "51.0.0"
arrow-buffer = "51.0.0"
arrow-schema = "51.0.0"
bindgen = "0.69.4"
criterion = { version = "0.5.1", features = ["html_reports"] }
croaring = "1.0.1"
divan = "0.1.14"
flatbuffers = "23.5.26"
flatc = "0.2.2"
half = { version = "2.4.0", features = ["std", "num-traits"] }
hashbrown = "0.14.3"
humansize = "2.1.3"
itertools = "0.12.1"
leb128 = "0.2.5"
Expand All @@ -47,8 +56,16 @@ num-traits = "0.2.18"
num_enum = "0.7.2"
parquet = "51.0.0"
paste = "1.0.14"
pyo3 = { version = "0.20.2", features = ["extension-module", "abi3-py311"] }
pyo3-log = "0.9.0"
rand = "0.8.5"
reqwest = { version = "0.12.0", features = ["blocking"] }
seq-macro = "0.3.5"
simplelog = { version = "0.12.2", features = ["paris"] }
thiserror = "1.0.58"
uninit = "0.6.2"
walkdir = "2.5.0"
zigzag = "0.1.0"

[workspace.lints.rust]
warnings = "deny"
Expand Down
6 changes: 3 additions & 3 deletions bench-vortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ vortex-roaring = { path = "../vortex-roaring" }
vortex-schema = { path = "../vortex-schema" }
vortex-zigzag = { path = "../vortex-zigzag" }
itertools = { workspace = true }
reqwest = { version = "0.12.0", features = ["blocking"] }
reqwest = { workspace = true }
parquet = { workspace = true }
log = { workspace = true }

[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
simplelog = { version = "0.12.2", features = ["paris"] }
criterion = { workspace = true }
simplelog = { workspace = true }

[[bench]]
name = "compress_benchmark"
Expand Down
10 changes: 5 additions & 5 deletions fastlanez-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ links = "fastlanez"
workspace = true

[dependencies]
arrayref = "0.3.7"
arrayref = { workspace = true }
paste = { workspace = true }
seq-macro = "0.3.5"
uninit = "0.6.2"
seq-macro = { workspace = true }
uninit = { workspace = true }

[build-dependencies]
bindgen = "0.69.1"
walkdir = "2.4.0"
bindgen = { workspace = true }
walkdir = { workspace = true }
4 changes: 2 additions & 2 deletions pyvortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ vortex-zigzag = { path = "../vortex-zigzag" }
itertools = { workspace = true }
log = { workspace = true }
paste = { workspace = true }
pyo3 = { version = "0.20.2", features = ["extension-module", "abi3-py311"] }
pyo3-log = "0.9.0"
pyo3 = { workspace = true }
pyo3-log = { workspace = true }

# We may need this workaround?
# https://pyo3.rs/v0.20.2/faq.html#i-cant-run-cargo-test-or-i-cant-build-in-a-cargo-workspace-im-having-linker-issues-like-symbol-not-found-or-undefined-reference-to-_pyexc_systemerror
2 changes: 1 addition & 1 deletion vortex-alp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ num-traits = { workspace = true }
log = { workspace = true }

[dev-dependencies]
divan = "0.1.14"
divan = { workspace = true }

[[bench]]
name = "alp_compress"
Expand Down
2 changes: 0 additions & 2 deletions vortex-array/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ allocator-api2 = { workspace = true }
arrow-array = { workspace = true }
arrow-buffer = { workspace = true }
arrow-schema = { workspace = true }
dyn-clone = "1.0.17"
half = { workspace = true }
humansize = { workspace = true }
itertools = { workspace = true }
Expand All @@ -34,7 +33,6 @@ num-traits = { workspace = true }
num_enum = { workspace = true }
paste = { workspace = true }
rand = { workspace = true }
rayon = "1.9.0"
thiserror = { workspace = true }
vortex-schema = { path = "../vortex-schema" }
vortex-alloc = { path = "../vortex-alloc" }
4 changes: 2 additions & 2 deletions vortex-datetime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ workspace = true
[dependencies]
vortex-array = { "path" = "../vortex-array" }
vortex-schema = { "path" = "../vortex-schema" }
linkme = "0.3.22"
log = "0.4.20"
linkme = { workspace = true }
log = { workspace = true }
12 changes: 6 additions & 6 deletions vortex-dict/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ edition = { workspace = true }
rust-version = { workspace = true }

[dependencies]
ahash = "0.8.11"
ahash = { workspace = true }
half = { workspace = true }
hashbrown = "0.14.3"
hashbrown = { workspace = true }
linkme = { workspace = true }
log = { workspace = true }
num-traits = { workspace = true }
Expand All @@ -25,10 +25,10 @@ vortex-schema = { path = "../vortex-schema" }
workspace = true

[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
log = "0.4.20"
rand = "0.8.5"
simplelog = { version = "0.12.1", features = ["paris"] }
criterion = { workspace = true }
log = { workspace = true }
rand = { workspace = true }
simplelog = { workspace = true }

[[bench]]
name = "dict_compress"
Expand Down
4 changes: 2 additions & 2 deletions vortex-fastlanes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = { workspace = true }
workspace = true

[dependencies]
arrayref = "0.3.7"
arrayref = { workspace = true }
vortex-schema = { path = "../vortex-schema" }
vortex-array = { path = "../vortex-array" }
linkme = { workspace = true }
Expand All @@ -25,4 +25,4 @@ fastlanez-sys = { path = "../fastlanez-sys" }
log = { workspace = true }

[dev-dependencies]
simplelog = { version = "0.12.1", features = ["paris"] }
simplelog = { workspace = true }
2 changes: 1 addition & 1 deletion vortex-roaring/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = { workspace = true }
vortex-array = { path = "../vortex-array" }
vortex-schema = { path = "../vortex-schema" }
linkme = { workspace = true }
croaring = "1.0.1"
croaring = {workspace = true}
num-traits = { workspace = true }
log = { workspace = true }

Expand Down
6 changes: 3 additions & 3 deletions vortex-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ path = "src/lib.rs"

[dependencies]
arrow-schema = { workspace = true }
flatbuffers = "23.5.26"
flatbuffers = { workspace = true }
itertools = { workspace = true }
thiserror = { workspace = true }

[build-dependencies]
flatc = "0.2.2"
walkdir = "2.4.0"
flatc = { workspace = true }
walkdir = { workspace = true }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion vortex-zigzag/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ linkme = { workspace = true }
vortex-alloc = { path = "../vortex-alloc" }
vortex-array = { path = "../vortex-array" }
vortex-schema = { path = "../vortex-schema" }
zigzag = "0.1.0"
zigzag = { workspace = true }

[lints]
workspace = true

0 comments on commit ed1fd0e

Please sign in to comment.