Skip to content

Commit 82c938b

Browse files
authored
Correct rust version channel (#7463)
I had noticed when setting up machines for benchmarking that 1.90 isn't actually a valid rust version and changing it to 1.90.0 was required to make it work --------- Signed-off-by: Robert Kruszewski <github@robertk.io>
1 parent 17e2801 commit 82c938b

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/web.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ jobs:
5858
cache: "npm"
5959
cache-dependency-path: vortex-web/package-lock.json
6060
- run: npm ci
61-
- run: npm run wasm
61+
- env:
62+
RUSTFLAGS: --cfg getrandom_backend\"unsupported"
63+
run: npm run wasm
6264
- run: npm run format:check
6365
- run: npm run lint
6466
- run: npm run typecheck

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ keywords = ["vortex"]
8181
license = "Apache-2.0"
8282
readme = "README.md"
8383
repository = "https://github.com/spiraldb/vortex"
84-
rust-version = "1.90"
84+
rust-version = "1.90.0"
8585
version = "0.1.0"
8686

8787
[workspace.dependencies]

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.90"
2+
channel = "1.90.0"
33
components = ["rust-src", "rustfmt", "clippy", "rust-analyzer"]
44
profile = "minimal"

vortex-web/crate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "vortex-web-wasm"
33
version = "0.1.0"
44
edition = "2024"
5-
rust-version = "1.90"
5+
rust-version = "1.90.0"
66
license = "Apache-2.0"
77
description = "WASM bindings for the Vortex web explorer"
88
publish = false

0 commit comments

Comments
 (0)