Cargo Features
[dependencies]
lorawan-encoding = { version = "0.6.2", default-features = false, features = ["full", "default-crypto", "with-to-string", "with-downlink"] }
- default = full
-
The
full
feature is set by default wheneverlorawan-encoding
is added without
somewhere in the dependency tree.default-features = false - full default = default-crypto, with-downlink, with-to-string
-
Affects
lorawan-encoding::extra
… - default-crypto full = aes, cmac
-
Affects
lorawan-encoding::default_crypto
,parser::parse
… - with-to-string full
-
Affects
extra::to_string
… - with-downlink full
-
Affects
creator::JoinAcceptCreator
…
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-crypto?
-
Enables aes ^0.4.0
- cmac default-crypto?
-
Enables cmac ^0.3.0