CBOR
CBOR copied to clipboard
The most comprehensive CBOR module in the Lua universe.
Results
2
CBOR issues
Sort by
recently updated
recently updated
newest added
``` cbor.encode{a='\x66\xc3\xb9'} ``` encodes as: ``` A1 # map(1) 61 # text(1) 61 # "a" 63 # text(3) 66C3B9 # "f\xC3\xB9" ``` however the 3 bytes `'\x66\xc3\xb9'` are meant as...
https://cbor.io cites this repo saying "supports everything mentioned in RFC 7049". A new edition of RFC 7049 has become available as [RFC 8949](https://www.rfc-editor.org/rfc/rfc8949.html). While there are no technical changes, there...