Cargo Features

[dependencies]
coe = { version = "0.2.2", default-features = false, features = ["std", "alloc", "serde"] }
default = std

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

std default = alloc

Implement std::error::Error for all Error types.

alloc std

Use Vec instead of statically sized buffer in Packet.
Also adds the packets_from_payloads function

Enables alloc of optional serde

Affects coe::packets_from_payloads

serde

Enable SerDe for all public types.

Enables serde