-
- [ ] find some decent JSON to CBOR unit test fixtures (JSON input, expected hex output)
- [ ] find JSON to CBOR unit test fixtures from another lib or language for good measure
- [ ] try the GPT co…
-
In CBOR library there are a couple of unidentified functions such as:
`unpack_float16`
```python
def decode_float16(decoder):
payload = decoder.read(2)
return unpack_float16(payload)
`…
-
Since using this library all our logs have been very cluttered with a lot of CBOR debugging log data. Is there a way to disable this globally? Also if we don't invoke the library directly, but e.g. th…
-
A Holder performing a presentation uses this library's helper functions of the form `usingSessionTranscript_____`. Under the covers these construct appropriately formed CBOR-encodings of a DataItem us…
-
### Version
latest
### Description
There is a heap allocation-size fail due to the unsafe "alloc" function used by "serde_transcode" in main() function.
### Current Behavior
ASAN detec…
-
### Answers checklist.
- [X] I have read the documentation [ESP-IDF Programming Guide](https://docs.espressif.com/projects/esp-idf/en/latest/) and the issue is not addressed there.
- [X] I have updat…
-
Right now, you would only find this out in the Crates documentation. And, honestly, it is a fairly tiny note for what is ostensibly a major missing feature.
Otherwise, the library does attempt to p…
-
CBOR has an upcoming packed format [specification](https://datatracker.ietf.org/doc/draft-ietf-cbor-packed/), the idea of which is to be able to take any CBOR-encoded data, and "compress" it by extrac…
-
Due to the nature of C, I think it doesn't make sense to try to aim for complete independence of the user API from the underlying serializer.
We do that for languages that are
* dynamically type…
-
Situation: Create a JSON `'{"my_float": 0.0}'` and convert it to CBOR using `zcbor.py`, then send the payload to Zephyr for decoding, with `CONFIG_ZCBOR_CANONICAL=y`
zcbor.py chooses to encode 0.0 …