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
4 changes: 3 additions & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ jobs:
cache: "npm"
cache-dependency-path: vortex-web/package-lock.json
- run: npm ci
- run: npm run wasm
- env:
RUSTFLAGS: --cfg getrandom_backend\"unsupported"
run: npm run wasm
- run: npm run format:check
- run: npm run lint
- run: npm run typecheck
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ keywords = ["vortex"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/spiraldb/vortex"
rust-version = "1.90"
rust-version = "1.90.0"
version = "0.1.0"

[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.90"
channel = "1.90.0"
components = ["rust-src", "rustfmt", "clippy", "rust-analyzer"]
profile = "minimal"
2 changes: 1 addition & 1 deletion vortex-web/crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "vortex-web-wasm"
version = "0.1.0"
edition = "2024"
rust-version = "1.90"
rust-version = "1.90.0"
license = "Apache-2.0"
description = "WASM bindings for the Vortex web explorer"
publish = false
Expand Down
Loading