Improve arrays and record passing scheme (#76)

This commit is contained in:
vms
2021-04-26 14:02:26 +03:00
committed by GitHub
parent c702311595
commit 96c32b64d8
79 changed files with 1109 additions and 1079 deletions

View File

@ -1,7 +1,9 @@
#!/bin/sh
cargo update
fce build --release
cargo update --aggressive;
fce build --release;
rm -f artifacts/*
cp ../../target/wasm32-wasi/release/call_parameters.wasm artifacts/
rm -f artifacts/* || true;
mkdir -p artifacts;
cp ../../target/wasm32-wasi/release/call_parameters.wasm artifacts/;