We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a12d8f5 commit 23ce225Copy full SHA for 23ce225
.github/workflows/ci.yml
@@ -68,7 +68,7 @@ jobs:
68
if: matrix.target != 'wasm32-unknown-unknown'
69
env:
70
CARGO_TARGET_WASM32_WASIP1_RUNNER: wasmtime
71
- run: cargo hack test --each-feature --target ${{ matrix.target }}
+ run: cargo hack test --each-feature --target ${{ matrix.target }} --lib --tests
72
73
format:
74
runs-on: ubuntu-latest
Cargo.toml
@@ -21,10 +21,12 @@ default = []
21
22
[dev-dependencies]
23
cobs = "0.5"
24
-criterion = "0.8"
25
rand = "0.9"
26
sysinfo = "0.37"
27
+[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
28
+criterion = "0.8"
29
+
30
[lib]
31
bench = false
32
0 commit comments