Skip to content

Commit 5f688e7

Browse files
authored
Merge pull request #2 from rerun-io/big-refactor
Refactor everything
2 parents 2f31123 + 03d1df7 commit 5f688e7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+35736
-2594
lines changed

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[target.wasm32-unknown-unknown]
2+
rustflags = ["--cfg", "getrandom_backend=\"wasm_js\""]

.github/workflows/pages.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ permissions:
1717
jobs:
1818
build-github-pages:
1919
runs-on: ubuntu-latest
20+
env:
21+
RUSTFLAGS: '--cfg getrandom_backend="wasm_js"'
2022
steps:
2123
- uses: actions/checkout@v4 # repo checkout
2224
- name: Setup toolchain for wasm

.github/workflows/rust.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
check_wasm:
2626
name: Check wasm32
2727
runs-on: ubuntu-latest
28+
env:
29+
RUSTFLAGS: '--cfg getrandom_backend="wasm_js"'
2830
steps:
2931
- uses: actions/checkout@v4
3032
- uses: actions-rs/toolchain@v1
@@ -89,12 +91,14 @@ jobs:
8991
trunk:
9092
name: trunk
9193
runs-on: ubuntu-latest
94+
env:
95+
RUSTFLAGS: '--cfg getrandom_backend="wasm_js"'
9296
steps:
9397
- uses: actions/checkout@v4
9498
- uses: actions-rs/toolchain@v1
9599
with:
96100
profile: minimal
97-
toolchain: 1.85.0
101+
toolchain: 1.88.0
98102
target: wasm32-unknown-unknown
99103
override: true
100104
- name: Download and install Trunk binary

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ target_wasm
1111

1212
# https://github.com/lycheeverse/lychee
1313
.lycheecache
14+
15+
.env

.typos.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@
44

55
[default.extend-words]
66
egui = "egui" # Example for how to ignore a false positive
7+
8+
[files]
9+
extend-exclude = [
10+
"github.graphql",
11+
]

0 commit comments

Comments
 (0)