Cargo Features
[dependencies]
evm-interpreter = { version = "1.0.0-alpha.2", default-features = false, features = ["std", "with-codec", "with-serde"] }
- default = std
-
The
std
feature is set by default wheneverevm-interpreter
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of primitive-types ^0.12, rlp ^0.5, parity-scale-codec, scale-info, serde, and sha3
serde:
Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library. - with-codec = scale-codec, scale-info
-
Enables impl-codec of primitive-types ^0.12
- with-serde = serde
-
Enables impl-serde of primitive-types ^0.12
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.