Cargo Features
[dependencies]
ockam_key_exchange_xx = { version = "0.79.0", default-features = false, features = ["std", "no_std", "alloc"] }
- default = std
-
The
std
feature is set by default wheneverockam_key_exchange_xx
is added without
somewhere in the dependency tree.default-features = false - std default
-
Feature (enabled by default): "std" enables functionality expected to be available on a standard platform.
Enables std of ockam_vault ^0.78.0
- no_std
-
Feature: "no_std" enables functionality required for platforms without the standard library, requires nightly.
Enables no_std of ockam_vault ^0.78.0
- alloc
-
Feature: "alloc" enables support for heap allocation (implied by
feature = "std"
)Enables alloc of ockam_vault ^0.78.0