Cargo Features

[dependencies]
ethabi-solana = { version = "1.0.0", default-features = false, features = ["std", "full-serde", "parity-codec", "rlp", "serde"] }
default = full-serde, rlp, std

These default features are set whenever ethabi-solana is added without default-features = false somewhere in the dependency tree.

std default full-serde = thiserror

Enables std of ethereum-types-solana, hex, optional serde, sha3, and optional uint

serde:

Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library.

full-serde default = once_cell, regex, serde, serde_json, std
parity-codec

Enables codec of ethereum-types-solana

rlp default

Enables rlp of ethereum-types-solana

serde full-serde = uint

Enables serde, serialize of ethereum-types-solana

Affects token::Tokenizer

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.

once_cell full-serde
regex full-serde
serde_json full-serde
thiserror std
uint serde?