File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 57
57
58
58
- name : Run wasm tests
59
59
working-directory : ./wasm-tests
60
- run : wasm-pack test --headless --firefox
60
+ run : |
61
+ cargo tree
62
+ wasm-pack test --headless --firefox
61
63
62
64
# macro tests should be last, because they produce scratchpad.rs, which my not compile
63
65
- name : Run macro tests
Original file line number Diff line number Diff line change @@ -11,16 +11,17 @@ crate-type = ["cdylib", "rlib"]
11
11
default = [" console_error_panic_hook" ]
12
12
13
13
[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"
15
18
16
19
# The `console_error_panic_hook` crate provides better debugging of panics by
17
20
# logging them with `console.error`. This is great for development, but requires
18
21
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
19
22
# code size when deploying.
20
23
console_error_panic_hook = { version = " 0.1.6" , optional = true }
21
24
22
- ascent = { path = " ../ascent" , features = [" wasm-bindgen" ] }
23
-
24
25
[dev-dependencies ]
25
26
wasm-bindgen-test = " 0.3.13"
26
27
You can’t perform that action at this time.
0 commit comments