- Fix LTO regressions in nightly toolchain #52
- First release to crates.io
- Use
subxt
release from crates.io
- Fix: fail the whole build process if the contract build fails.
- Minimize contract wasm binary size:
- Run
wasm-opt
on the contract Wasm binary. - Uses
cargo-xbuild
to build custom sysroot crates without panic string bloat. - Automatically removes the
rlib
crate type fromCargo.toml
, removing redundant metadata.
- Run
- Removes requirement for linker args specified in
.cargo/config
. - Added
--verbose
and--quiet
flags forbuild
andgenerate-metadata
commands.