8 releases

0.2.4 Apr 17, 2024
0.2.3 Jul 27, 2023
0.2.2 Feb 2, 2023
0.2.0 Jul 17, 2022
0.1.1 Aug 19, 2020

#260 in No standard library

Download history 126/week @ 2024-01-02 347/week @ 2024-01-09 742/week @ 2024-01-16 639/week @ 2024-01-23 1267/week @ 2024-01-30 594/week @ 2024-02-06 771/week @ 2024-02-13 420/week @ 2024-02-20 297/week @ 2024-02-27 429/week @ 2024-03-05 389/week @ 2024-03-12 937/week @ 2024-03-19 198/week @ 2024-03-26 362/week @ 2024-04-02 380/week @ 2024-04-09 509/week @ 2024-04-16

1,498 downloads per month
Used in 14 crates (13 directly)

MIT/Apache

31KB
415 lines

The coap-numbers crate provides constants used in the CoAP protocol and registered in the CoRE Parameters registry at IANA.

Along with the numeric values, it provides converters to string representations, and classification in case the numbers carry inherent.

It does not provide enums or newtypes for them, but can serve as a base to build those. (Especially for constrained platforms, the expectation here is that they'd have an enum of things they can work with, and everything else is just unsupported and doesn't need to waste any more space).

Minimum Supported Rust Version (MSRV)

This crate is build-tested on stable Rust 1.51.0. It might compile with older versions but that may change at any time.


lib.rs:

This crate primarily contains constants for the CoAP Protocol, as maintained in the CoRE Parameters registry at IANA.

In addition to the constants themselves, it provides functions to get their names and extractable properties.

This crate tries not to be opinionated in terms of types: It uses the Rust types that reflect the possible ranges of the registry, but does not attempt to create suitable newtypes or enums for the constants. That is left to downstream libraries, as they can best judge whether they need to represent values that are unrecognized anyway.

Features

The only optional feature is alloc, which is opt-in. It adds functions that return a String; those typically have formatter based functions they point to for replacement.

No runtime deps

Features