Skip to content

Commit 5d787f1

Browse files
update rust-analyzer dependencies to 0.0.81
1 parent 03c4dc6 commit 5d787f1

File tree

12 files changed

+417
-522
lines changed

12 files changed

+417
-522
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[{package.json,*.yaml}]
12+
indent_size = 2

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Rust toolchain
2424
uses: actions-rs/toolchain@v1
2525
with:
26-
toolchain: nightly-2021-02-11
26+
toolchain: nightly-2021-11-02
2727
target: wasm32-unknown-unknown
2828
profile: minimal
2929
override: true

.github/workflows/netlify.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Rust toolchain
2121
uses: actions-rs/toolchain@v1
2222
with:
23-
toolchain: nightly-2021-02-11
23+
toolchain: nightly-2021-11-02
2424
target: wasm32-unknown-unknown
2525
profile: minimal
2626
override: true

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ To run:
66
$ cd rust-pack
77
$ cargo run
88
$ cd ../ra-wasm
9-
$ wasm-pack build --target web
9+
$ wasm-pack build --target web --profiling
1010
$ cd ../www
1111
$ yarn
1212
$ yarn start

ra-wasm/.cargo/config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[target.wasm32-unknown-unknown]
2-
rustflags = ["-C", "target-feature=+atomics,+bulk-memory"]
2+
rustflags = ["-C", "target-feature=+atomics,+bulk-memory,+mutable-globals"]
33

44
[unstable]
55
build-std = ["panic_abort", "std"]

0 commit comments

Comments
 (0)