Cargo Features

[dependencies]
base58-monero = { version = "2.0.0", default-features = false, features = ["std", "check", "stream"] }
default = std

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

std default stream? = thiserror
check = tiny-keccak

Affects base58::encode_check, base58::decode_check, base58::encode_stream_check, base58::decode_stream_check

stream = async-stream, futures-util, std, tokio

Affects base58::encode_stream, base58::decode_stream, base58::encode_stream_check, base58::decode_stream_check

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.

async-stream stream?
futures-util stream?
thiserror std
tiny-keccak check?
tokio stream?