Skip to content

Commit 699746f

Browse files
committed
Merge branch 'master' into chore/typos
2 parents 87a8471 + 488ca12 commit 699746f

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ jobs:
5757

5858
- name: Run wasm tests
5959
working-directory: ./wasm-tests
60-
run: wasm-pack test --headless --firefox
60+
run: |
61+
cargo tree
62+
wasm-pack test --headless --firefox
6163
6264
# macro tests should be last, because they produce scratchpad.rs, which my not compile
6365
- name: Run macro tests

wasm-tests/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,17 @@ crate-type = ["cdylib", "rlib"]
1111
default = ["console_error_panic_hook"]
1212

1313
[dependencies]
14-
wasm-bindgen = "0.2.63"
14+
ascent = { path = "../ascent", features = ["wasm-bindgen"] }
15+
16+
# pinning to this version because higher versions don't work on rust 1.66
17+
bumpalo = "=3.14"
1518

1619
# The `console_error_panic_hook` crate provides better debugging of panics by
1720
# logging them with `console.error`. This is great for development, but requires
1821
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
1922
# code size when deploying.
2023
console_error_panic_hook = { version = "0.1.6", optional = true }
2124

22-
ascent = { path = "../ascent", features = ["wasm-bindgen"] }
23-
2425
[dev-dependencies]
2526
wasm-bindgen-test = "0.3.13"
2627

0 commit comments

Comments
 (0)