File messagepack.cabal of Package ghc-messagepack
name : messagepack
version : 0.5.4
x-revision: 1
synopsis : Serialize instance for Message Pack Object
description : Serialize instance for Message Pack Object
homepage : https://github.com/rodrigosetti/messagepack
license : MIT
license-file : LICENSE
author : Rodrigo Setti
stability : experimental
bug-reports : https://github.com/rodrigosetti/messagepack/issues
package-url : https://github.com/rodrigosetti/messagepack/archive/master.zip
maintainer : rodrigosetti@gmail.com
copyright : (c) 2014 Rodrigo Setti
category : Data
build-type : Simple
cabal-version : >=1.10
extra-source-files : CHANGELOG
, README.md
source-repository head
type : git
location : git@github.com:rodrigosetti/messagepack.git
library
exposed-modules : Data.MessagePack
, Data.MessagePack.Spec
default-language : Haskell2010
build-depends : base >= 4.6 && < 5
, bytestring == 0.10.*
, cereal == 0.5.*
, containers == 0.5.*
, deepseq >= 1.1 && < 1.5
other-extensions: DeriveGeneric
test-suite messagepack-tests
type : exitcode-stdio-1.0
hs-source-dirs : tests
main-is : Main.hs
default-language : Haskell2010
build-depends : base == 4.*
, QuickCheck == 2.*
, bytestring == 0.10.*
, cereal == 0.5.*
, containers == 0.5.*
, test-framework == 0.8.*
, test-framework-quickcheck2 == 0.3.*
, test-framework-th == 0.2.*
, messagepack