Cargo Features

coap-handler-implementations has no features set by default.

[dependencies]
coap-handler-implementations = { version = "0.5.0", features = ["leaky_names", "serde-std"] }
leaky_names

## Feature flags

Make a few items pub available that do not have stability guarantees.
While this is useful in the context of building handlers into statics,
apply the same caution as with any other crate feature that's disabling stability guarantees: Don't use this from libraries, for your dependents will run the risk of accidentally using unstable names.

Affects forking::new_dispatcher

serde-std

This crate has nothing in terms of std to activate, but due to serde's non-additive std feature that extends down to serde_cbor, a user may need to declare that serde's std feature is used just so that all serde implementers are instructed to properly switch on their std as well.

Enables std of serde and serde_cbor