Cargo Features

[dependencies]
lorawan = { version = "0.8.0", default-features = false, features = ["full", "default-crypto", "with-to-string", "with-downlink", "serde", "defmt"] }
default = full

The full feature is set by default whenever lorawan is added without default-features = false somewhere in the dependency tree.

full default = default-crypto, with-downlink, with-to-string

Affects lorawan::extra

default-crypto full = aes, cmac

Affects lorawan::default_crypto, parser::parse

with-to-string full

Affects extra::to_string

Affects creator::JoinAcceptCreator

serde

Enables serde

defmt

Enables defmt

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?
cmac default-crypto?