Skip to content

evm-v1.1.0

Latest

Choose a tag to compare

@sorpaas sorpaas released this 14 Dec 10:50
evm-v1.1.0
6cb53ef

Add support for ruint as the uint256 backend

The ruint crate is known to be more performant in certain situations. So give it a try! It can be enabled by the ruint feature flag:

  • If no feature flag is set (same as now), then primitive-types uint256 will continue to be used.
  • If the ruint feature flag is set, then ruint uint256 will be used.
evm = { version = "1.1.0", features = ["ruint"] }

In addition, evm::uint now contains re-export of H256, H160 and U256.

Fixes

  • Fixed an issue of generic-array's deprecated flag breaking build.

Detailed changelog since evm-v1.0.0

Full Changelog: evm-v1.0.0...evm-v1.1.0

New contributors