Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- uses: taiki-e/install-action@43aecc8d72668fbcfe75c31400bc4f890f1c5853 # v2.83.2
with:
tool: nextest
# Build all 10 guest wasms ONCE (release/wasm32-wasip2): the single source of
# Build all 11 guest wasms ONCE (release/wasm32-wasip2): the single source of
# truth for guest buildability and the artifacts the integration tests load.
# Per-module size report folded in; a compile break still names the offending
# crate and -D warnings still applies.
Expand All @@ -77,7 +77,7 @@ jobs:
cargo build --release --target wasm32-wasip2 --locked \
-p example -p price-alert -p balance-tracker -p http-probe \
-p clock-reader -p flaky-bomb -p fuel-bomb -p memory-bomb \
-p panic-bomb -p slow-host
-p panic-bomb -p slow-host -p topic-parity
{
echo "### module .wasm sizes"
echo "| module | bytes |"
Expand Down
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ members = [
"modules/fixtures/memory-bomb",
"modules/fixtures/panic-bomb",
"modules/fixtures/slow-host",
"modules/fixtures/topic-parity",
"tools/load-gen",
]
resolver = "2"
Expand Down
6 changes: 6 additions & 0 deletions crates/nexum-module-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ proc-macro = true
workspace = true

[dependencies]
# Typed `B256` topics from the manifest extraction, embedded into the
# emitted parity check.
alloy-primitives.workspace = true
nexum-world = { path = "../nexum-world", features = ["macros"] }
proc-macro2.workspace = true
quote.workspace = true
syn = { workspace = true, features = ["full"] }

[dev-dependencies]
tempfile.workspace = true
Loading
Loading