serialise

A binary serialisation library for Haskell values.

https://github.com/well-typed/cborg

Version on this page:0.2.3.0@rev:1
LTS Haskell 22.14:0.2.6.1@rev:1
Stackage Nightly 2024-03-28:0.2.6.1@rev:1
Latest on Hackage:0.2.6.1@rev:1

See all snapshots serialise appears in

BSD-3-Clause licensed by Duncan Coutts
This version can be pinned in stack with:serialise-0.2.3.0@sha256:39cc16a27b77be1eb6a8fc69da940430cf5ecbef88e32ce4b499e150e384e6dd,8670

This package (formerly binary-serialise-cbor) provides pure, efficient serialization of Haskell values directly into ByteStrings for storage or transmission purposes. By providing a set of type class instances, you can also serialise any custom data type you have as well.

The underlying binary format used is the 'Concise Binary Object Representation', or CBOR, specified in RFC 7049. As a result, serialised Haskell values have implicit structure outside of the Haskell program itself, meaning they can be inspected or analyzed without custom tools.

An implementation of the standard bijection between CBOR and JSON is provided by the cborg-json package. Also see cbor-tool for a convenient command-line utility for working with CBOR data.

Changes

Revision history for serialise

0.2.3.0 – 2020-05-10

  • Bounds bumps and GHC 8.10 compatibility

0.2.2.0 – 2019-12-29

  • Export encodeContainerSkel, encodeMapSkel and decodeMapSkel from Codec.Serialise.Class

  • Fix Serialise instances for TypeRep and SomeTypeRep (#216)

  • Bounds bumps and GHC 8.8 compatibility

0.2.1.0 – 2018-10-11

  • Bounds bumps and GHC 8.6 compatibility

0.2.0.0 – 2017-11-30

  • Improved robustness in presence of invalid UTF-8 strings

  • Add encoders and decoders for ByteArray

  • Export GSerialiseProd(..) and GSerialiseSum(..)

0.1.0.0 – 2017-06-28

  • First version. Released on an unsuspecting world.