Add CBOR serializer support, using the cbor2 package.
CBOR protocol is similar to msgpack, however CBOR has a cleaner design, is standardized and preferred over msgpack by some.
I modelled the implementation based on the msgpack implementation.
I arbitrarily chose cbor2 5.2.0 has the minimum version requirement, as this was the first release to make it into a Debian distribution as a pre-built package (Debian 11 Bullseye). It is likely that earlier cbor2 versions would also work.
Add CBOR serializer support, using the
cbor2
package. CBOR protocol is similar tomsgpack
, however CBOR has a cleaner design, is standardized and preferred overmsgpack
by some.I modelled the implementation based on the
msgpack
implementation.I arbitrarily chose
cbor2
5.2.0 has the minimum version requirement, as this was the first release to make it into a Debian distribution as a pre-built package (Debian 11 Bullseye). It is likely that earliercbor2
versions would also work.