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 wheneverbase58-monero
is added without
somewhere in the dependency tree.default-features = false - 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
-
Enables thiserror ^1
- tiny-keccak check?
- tokio stream?