Cargo Features

[dependencies]
listinfo = { version = "0.4.8", default-features = false, features = ["std", "deserialize", "test_deserialize"] }
default = std

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

std default
deserialize test_deserialize? = hex, serde

Affects listinfo::de

test_deserialize = deserialize, serde_bytes

Enables derive of serde

serde:

Provide derive(Serialize, Deserialize) macros.

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 deserialize? test_deserialize?
serde_bytes test_deserialize?
hex deserialize?