Mariusz

Results 4 issues of Mariusz

Current implementation of the MessagePack model allows for creation of malformed objects as the `ByteVector` class (which underlays most of the types in the model) has a maximum length of...

This ticket will be the root of the [MessagePack](https://msgpack.org/) implementation process. Similarly to `fs2-data-cbor`, the `fs2-data-msgpack` should be split into two modules: - The `low` module which will work on...

This pull request brings serialization and validation to the `msgpack.low` module. Serialization is provided for the outside use through `tobinary: Pipe[F, MsgpackItem, Byte]` and `toNonValidatedBinary: Pipe[F, MsgpackItem, Byte]` functions. Akin...

This MR brings high-lever serialization for the msgpack module. There are four new endpoints in total: - `high.toItems[F, A]: Pipe[F, A, MsgpackItem]` - `high.serialize[F, A]: Pipe[F, A, Byte]` - `high.ast.valuesToItems[F]:...