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
3 changes: 0 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ rustflags = [
"-C", "force-frame-pointers=yes",
]

[target.wasm32-unknown-unknown]
rustflags = ['--cfg', 'getrandom_backend="wasm_js"', '-C', 'target-feature=+atomics']

[alias]
xtask = "run -p xtask --"
vx = "run -p vortex-tui --"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
runner: amd64-medium
target: wasm32-unknown-unknown
env:
rustflags: "RUSTFLAGS='-A warnings'"
rustflags: "RUSTFLAGS='-A warnings --cfg getrandom_backend=\"unsupported\"'"
args: "--target wasm32-unknown-unknown --exclude vortex --exclude vortex-cuda --exclude vortex-cub --exclude vortex-nvcomp --exclude vortex-datafusion --exclude vortex-duckdb --exclude vortex-tui --exclude vortex-zstd --exclude vortex-test-e2e-cuda --exclude vortex-sqllogictest"
steps:
- uses: runs-on/action@v2
Expand Down
6 changes: 0 additions & 6 deletions Cargo.lock

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

5 changes: 0 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,6 @@ vortex-duckdb = { path = "./vortex-duckdb", default-features = false }
vortex-test-e2e-cuda = { path = "./vortex-test/e2e-cuda", default-features = false }
vortex-tui = { path = "./vortex-tui" }

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

[workspace.lints.rust]
let_underscore_drop = "deny"
macro_use_extern_crate = "deny"
Expand Down
2 changes: 0 additions & 2 deletions encodings/parquet-variant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,3 @@ vortex-session = { workspace = true }
rstest = { workspace = true }
vortex-array = { workspace = true, features = ["_test-harness"] }

[package.metadata.cargo-machete]
ignored = ["getrandom_v03"]
2 changes: 0 additions & 2 deletions encodings/pco/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,3 @@ vortex-session = { workspace = true }
rstest = { workspace = true }
vortex-array = { workspace = true, features = ["_test-harness"] }

[package.metadata.cargo-machete]
ignored = ["getrandom_v03"]
4 changes: 0 additions & 4 deletions vortex-array/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ cudarc = { workspace = true, optional = true }
enum-iterator = { workspace = true }
flatbuffers = { workspace = true }
futures = { workspace = true, features = ["alloc", "async-await", "std"] }
getrandom_v03 = { workspace = true }
goldenfile = { workspace = true, optional = true }
half = { workspace = true, features = ["num-traits"] }
humansize = { workspace = true }
Expand Down Expand Up @@ -184,6 +183,3 @@ harness = false
[[bench]]
name = "listview_rebuild"
harness = false

[package.metadata.cargo-machete]
ignored = ["getrandom_v03"]
4 changes: 0 additions & 4 deletions vortex-btrblocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ rust-version = { workspace = true }
version = { workspace = true }

[dependencies]
getrandom_v03 = { workspace = true }
itertools = { workspace = true }
num-traits = { workspace = true }
pco = { workspace = true, optional = true }
Expand Down Expand Up @@ -64,6 +63,3 @@ test = false
name = "compress_listview"
harness = false
test = false

[package.metadata.cargo-machete]
ignored = ["getrandom_v03"]
5 changes: 0 additions & 5 deletions vortex-file/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ async-trait = { workspace = true }
bytes = { workspace = true }
flatbuffers = { workspace = true }
futures = { workspace = true, features = ["std", "async-await"] }
getrandom_v03 = { workspace = true } # Needed to pickup the "wasm_js" feature for wasm targets from the workspace configuration
itertools = { workspace = true }
kanal = { workspace = true }
moka = { workspace = true, features = ["sync"] }
Expand All @@ -31,7 +30,6 @@ parking_lot = { workspace = true }
pin-project-lite = { workspace = true }
tokio = { workspace = true, features = ["rt"], optional = true }
tracing = { workspace = true }
uuid = { workspace = true } # Needed to pickup the "js" feature for wasm targets from the workspace configuration
vortex-alp = { workspace = true }
vortex-array = { workspace = true }
vortex-btrblocks = { workspace = true }
Expand Down Expand Up @@ -84,6 +82,3 @@ unstable_encodings = [
"vortex-zstd?/unstable_encodings",
"vortex-btrblocks/unstable_encodings",
]

[package.metadata.cargo-machete]
ignored = ["getrandom_v03", "uuid"]
4 changes: 0 additions & 4 deletions vortex-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ async-stream = { workspace = true }
async-trait = { workspace = true }
bytes = { workspace = true }
futures = { workspace = true, features = ["std", "executor"] }
getrandom_v03 = { workspace = true } # Needed to pickup the "wasm_js" feature for wasm targets from the workspace configuration
glob = { workspace = true }
handle = "1.0.2"
kanal = { workspace = true }
Expand Down Expand Up @@ -67,6 +66,3 @@ tokio = ["tokio/fs", "tokio/rt-multi-thread"]

[lints]
workspace = true

[package.metadata.cargo-machete]
ignored = ["getrandom_v03"]
4 changes: 0 additions & 4 deletions vortex-metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,8 @@ rust-version = { workspace = true }
version = { workspace = true }

[dependencies]
getrandom_v03 = { workspace = true }
parking_lot = { workspace = true }
sketches-ddsketch = { workspace = true }

[lints]
workspace = true

[package.metadata.cargo-machete]
ignored = ["getrandom_v03"]
Loading