Cargo Features
[dependencies]
psbt-v0 = { version = "0.1.1", default-features = false, features = ["std", "rand-std", "rand", "serde", "base64"] }
- default = std
-
The
std
feature is set by default wheneverpsbt-v0
is added without
somewhere in the dependency tree.default-features = false - std default rand-std?
-
Enables std of bitcoin and bitcoin-internals ^0.3.0
- rand-std = std
- rand
- serde = actual-serde
-
Enables serde of bitcoin and bitcoin-internals ^0.3.0
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.
- base64 implicit feature
-
Enables base64 ^0.21.3
base64:
encodes and decodes base64 as bytes or utf8
- actual-serde serde?
-
Enables serde
Do NOT use this as a feature! Use the
serde
feature instead.