Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ rustflags = ["-C", "force-frame-pointers=yes"]
rustflags = ["-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup"]
[target.x86_64-apple-darwin]
rustflags = ["-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup"]
[target.wasm32-unknown-unknown]
rustflags = ['--cfg', 'getrandom_backend="wasm_js"']

[alias]
xtask = "run -p xtask --"
Expand Down
12 changes: 7 additions & 5 deletions Cargo.lock

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

34 changes: 22 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ categories = ["database-implementations", "data-structures", "compression"]
anyhow = "1.0.95"
arbitrary = "1.3.2"
arrayref = "0.3.7"
arrow = "54.1"
arrow-arith = "54.1"
arrow-array = "54.1"
arrow-buffer = "54.1"
arrow-cast = "54.1"
arrow-ord = "54.1"
arrow-schema = "54.1"
arrow-select = "54.1"
arrow-string = "54.1"
arrow = "54.2"
arrow-arith = "54.2"
arrow-array = "54.2"
arrow-buffer = "54.2"
arrow-cast = "54.2"
arrow-ord = "54.2"
arrow-schema = "54.2"
arrow-select = "54.2"
arrow-string = "54.2"
async-once-cell = "0.5.4"
async-trait = "0.1.86"
backtrace = "0.3.74"
Expand Down Expand Up @@ -91,7 +91,7 @@ fsst-rs = "0.5.0"
futures = { version = "0.3.31", default-features = false }
futures-executor = "0.3.31"
futures-util = "0.3.31"
getrandom = "0.2.14"
getrandom = "0.3"
goldenfile = "1"
half = { version = "2.2.1", features = ["std", "num-traits"] }
hashbrown = "0.15.1"
Expand All @@ -109,7 +109,7 @@ num-traits = "0.2.19"
num_enum = "0.7.2"
object_store = "0.11.0"
oneshot = "0.1.10"
parquet = "54.1"
parquet = "54.2"
paste = "1.0.15"
pin-project = "1.1.5"
pin-project-lite = "0.2.15"
Expand Down Expand Up @@ -155,7 +155,7 @@ tracing-chrome = "0.7.2"
tracing-futures = "0.2.5"
tracing-subscriber = "0.3.19"
url = "2.5.4"
uuid = { version = "1.14.0", features = ["js", "v4"] }
uuid = { version = "1.14", features = ["js"] }
wasm-bindgen-futures = "0.4.39"
witchcraft-metrics = "1.0.1"

Expand Down Expand Up @@ -194,6 +194,16 @@ worker = "0.5.0"
xshell = "0.2.6"
zigzag = "0.1.0"

[workspace.dependencies.getrandom_v03]
package = "getrandom"
version = "0.3.1"
features = ["wasm_js"]

[workspace.dependencies.getrandom_v02]
package = "getrandom"
version = "0.2.15"
features = ["js"]

[workspace.lints.rust]
macro_use_extern_crate = "deny"
redundant_lifetimes = "deny"
Expand Down
2 changes: 1 addition & 1 deletion bench-vortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ tracing-subscriber = { workspace = true, features = [
"tracing-log",
] }
url = { workspace = true }
uuid = { workspace = true }
uuid = { workspace = true, features = ["v4"] }
vortex = { workspace = true, features = ["object_store", "parquet"] }
vortex-datafusion = { workspace = true }
xshell = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions encodings/datetime-parts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ readme = { workspace = true }
workspace = true

[dependencies]
getrandom_v02 = { workspace = true }
serde = { workspace = true, features = ["derive"] }
vortex-array = { workspace = true }
vortex-buffer = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions encodings/dict/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ test-harness = ["rand", "vortex-fsst"]
[dependencies]
arrow-buffer = { workspace = true }
num-traits = { workspace = true }
# test-harness
rand = { workspace = true, optional = true }
rustc-hash = { workspace = true }
serde = { workspace = true }
vortex-array = { workspace = true }
vortex-buffer = { workspace = true }
vortex-dtype = { workspace = true }
vortex-error = { workspace = true }
vortex-fsst = { workspace = true, optional = true }
vortex-mask = { workspace = true }
vortex-scalar = { workspace = true }
# test-harness
rand = { workspace = true, optional = true }
vortex-fsst = { workspace = true, optional = true }

[lints]
workspace = true
Expand Down
2 changes: 1 addition & 1 deletion encodings/fastlanes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ vortex-scalar = { workspace = true }
[dev-dependencies]
divan = { workspace = true }
rand = { workspace = true }
vortex-alp = { workspace = true }
vortex-array = { workspace = true, features = ["test-harness"] }
vortex-fastlanes = { path = ".", features = ["test-harness"] }
vortex-alp = { workspace = true }

[features]
test-harness = ["dep:rand"]
Expand Down
4 changes: 0 additions & 4 deletions vortex-array/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,6 @@ arbitrary = [
test-harness = ["dep:goldenfile"]
canonical_counter = []

[target.'cfg(target_arch = "wasm32")'.dependencies]
# Enable the JS feature of getrandom (via rand) to supprt wasm32 target
getrandom = { workspace = true, features = ["js"] }

[dev-dependencies]
divan = { workspace = true }
rstest = { workspace = true }
Expand Down
23 changes: 12 additions & 11 deletions vortex-btrblocks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
[package]
name = "vortex-btrblocks"
description = "BtrBlocks style compressor"
version.workspace = true
homepage.workspace = true
repository.workspace = true
authors.workspace = true
license.workspace = true
keywords.workspace = true
include.workspace = true
edition.workspace = true
rust-version.workspace = true
readme.workspace = true
categories.workspace = true
version = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }
categories = { workspace = true }

[dependencies]
getrandom_v02 = { workspace = true }
arrow-buffer = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions vortex-datetime-dtype/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ serde = { workspace = true, features = ["derive"] }
vortex-dtype = { workspace = true, features = ["serde"] }
vortex-error = { workspace = true }

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change


[features]
default = ["arrow"]
arrow = ["dep:arrow-schema"]
Expand Down
5 changes: 1 addition & 4 deletions vortex-metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ categories = { workspace = true }
[dependencies]
vortex-error = { workspace = true }
witchcraft-metrics = { workspace = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
# Enable the JS feature of getrandom (via rand) to supprt wasm32 target
getrandom = { workspace = true, features = ["js"] }
getrandom_v02 = { workspace = true }

[lints]
workspace = true
1 change: 1 addition & 0 deletions vortex-scalar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ vortex-dtype = { workspace = true }
vortex-error = { workspace = true }
vortex-flatbuffers = { workspace = true, optional = true }
vortex-proto = { workspace = true, optional = true }
getrandom_v02 = { workspace = true }

[dev-dependencies]
flexbuffers = { workspace = true }
Expand Down
Loading