Cargo Features

[dependencies]
evm-core = { version = "0.41.0", default-features = false, features = ["std", "with-codec", "with-serde", "force-debug"] }
default = std

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

std default

Enables std of primitive-types, parity-scale-codec, scale-info, and serde

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

with-serde = serde

Enables impl-serde of primitive-types

force-debug = log

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.

log force-debug?
scale-codec std with-codec?

Enables parity-scale-codec

scale-info std with-codec?
serde std with-serde?