cbor icon indicating copy to clipboard operation
cbor copied to clipboard

A CBOR implementation for Dart

Results 7 cbor issues
Sort by recently updated
recently updated
newest added

Instead of automatically converting double to float, halffloat or double the library should let the user chose, for example CborHalfFloat, CborDouble or CborFloat.

Currently the decoder restricts map keys to be of integer or string type by specifically checking for these, this should be looked at, CBOR allows more than this, especially negative...

Hi, sorry just wondering, I cannot find 'simple.dart' in version 4.1.0, is it to be released on version 5.0.0? Thank you for this library, currently using it for a flutter-based...

Review the support for bignums in the package, at the moment these are supported only through tags

in progress

Below is my code: // Assuming `raw` is a Uint8List for CBOR decoding final cborDecoded = cborDecode(raw); print(cborDecoded); CborJsonEncoder jsonEncoder = CborJsonEncoder(); print(jsonEncoder.convert(cborDecoded)); Below is the output of cborDecoded: `I/flutter...

I think CBOR specification allows the definition of custom types. Do you have any plan to support them?

The Cbor serializer currently can't specify the types of keys and values for a Map during decoding. It would be beneficial to introduce a feature like: ``` CborSimpleCodec cborSimpleCodec =...

enhancement