Cargo Features

[dependencies]
wasmi_ir = { version = "0.44.0", default-features = false, features = ["std", "simd"] }
default = std

The std feature is set by default whenever wasmi_ir is added without default-features = false somewhere in the dependency tree.

std default

Enables std of wasmi_core

wasmi_core:

Use no-default-features for a no_std build.

simd

Enables simd of wasmi_core

wasmi_core:

Enables the Wasm simd proposal.

This also changes the size of UntypedVal from 64-bit to 128-bit which may have significant impact on performance and memory usage.

wasmi_ir has 3 features without comments.