Cargo Features
[dependencies]
wasmi_ir = { version = "0.44.0", default-features = false, features = ["std", "simd"] }
- default = std
-
The
std
feature is set by default wheneverwasmi_ir
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of wasmi_core
wasmi_core:
Use
no-default-features
for ano_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.