cabal-version: 1.12 name: msgpack version: 1.0.1.0 x-revision: 2 synopsis: A Haskell implementation of MessagePack description: A Haskell implementation of the data interchange format. MessagePack is a binary format which aims to be compact and supports encoding a superset of the data-model. . == Related Packages . A JSON adapter for the library is provided by the package. . The package provides an implementation of the MessagePack-RPC protocol. homepage: http://msgpack.org/ bug-reports: https://github.com/msgpack/msgpack-haskell/issues license: BSD3 license-file: LICENSE author: Hideyuki Tanaka maintainer: Herbert Valerio Riedel copyright: Copyright (c) Hideyuki Tanaka 2009-2015, (c) Herbert Valerio Riedel 2019 category: Data build-type: Simple extra-source-files: CHANGES.md source-repository head type: git location: http://github.com/msgpack/msgpack-haskell.git subdir: msgpack library default-language: Haskell2010 other-extensions: LambdaCase, OverloadedLists default-extensions: Trustworthy hs-source-dirs: src exposed-modules: Data.MessagePack Data.MessagePack.Assoc Data.MessagePack.Object Data.MessagePack.Get Data.MessagePack.Put build-depends: base >= 4.7 && < 4.20 , mtl >= 2.1.3.1 && < 2.4 , bytestring >= 0.10.4 && < 0.13 , text >= 1.2 && < 1.3 || >= 2.0 && < 2.2 , containers >= 0.5.5 && < 0.8 , unordered-containers >= 0.2.5 && < 0.3 , hashable >= 1.1.2.4 && < 1.5 , vector >= 0.10.11 && < 0.14 , deepseq >= 1.3 && < 1.6 , binary >= 0.7.1 && < 0.9 , data-binary-ieee754 >= 0.4.4 && < 0.5 ghc-options: -Wall if impl(ghc >= 7.10) ghc-options: -fno-warn-trustworthy-safe test-suite msgpack-tests type: exitcode-stdio-1.0 default-language: Haskell2010 hs-source-dirs: test main-is: test.hs build-depends: msgpack -- inherited constraints via `msgpack` , base , bytestring -- test-specific dependencies , async == 2.2.* , tasty >= 1.2 && < 1.6 , tasty-quickcheck == 0.10.* , QuickCheck >= 2.12 && < 2.15