Cargo Features
[dependencies]
sb-aes-gcm-siv = { version = "0.10.3", default-features = false, features = ["std", "alloc", "armv8", "force-soft", "heapless", "stream"] }
- default = aes, alloc
-
These default features are set whenever
sb-aes-gcm-siv
is added without
somewhere in the dependency tree.default-features = false - std = alloc
- alloc default std?
- armv8
-
nightly-only
Enables armv8 of aes ^0.7.5 and polyval ^0.5.1
- force-soft
-
Enables force-soft of aes ^0.7.5 and polyval ^0.5.1
- heapless
- stream
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.
- aes default armv8? force-soft?
-
Enables aes ^0.7.5
Affects
sb-aes-gcm-siv::Aes128GcmSiv
,sb-aes-gcm-siv::Aes256GcmSiv
…