Cargo Features

[dependencies]
aurora-evm = { version = "2.0.0", default-features = false, features = ["std", "with-codec", "with-serde", "tracing", "print-debug"] }
default = std

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

std default

Enables std of environmental, log, primitive-types, rlp, parity-scale-codec, scale-info, serde, and sha3

environmental:

Optional dependencies

Affects core::prelude, gasometer::prelude, aurora-evm::prelude, runtime::prelude

with-codec = scale-codec, scale-info

Enables codec and scale-info of primitive-types

with-serde = serde

Enables impl-serde of primitive-types

tracing = environmental

Affects gasometer::tracing, gasometer::Snapshot, aurora-evm::tracing, runtime::tracing

force-debug create-fixed print-debug

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.

serde std with-serde?
environmental std tracing?
scale-codec std with-codec?

Enables parity-scale-codec

scale-info std with-codec?