packages feed

chunky-0.1.0.0: chunky.cabal

-- Initial chunky.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                chunky
version:             0.1.0.0
category:            Codec
synopsis:            Human-readable storage of text/binary objects.
description:         Allows serializing data into binary files, preserving human readability
    as far as possible. It allows mixing binary and textual data in the same file, and
    is a light-weight alternative to parsec & co. The generated files are not intended
    to be human-editable, only readable.
    If the stored binary data is utf8-encoded text, the whole file can be read in any
    text-editor.
license:             LGPL-3
license-file:        LICENSE
author:              Philipp Hausmann
maintainer:          hackage@314.ch
-- copyright:           
build-type:          Simple
cabal-version:       >=1.8

source-repository head
    type:       git
    location:   git://github.com/phile314/chunky.git

library
  exposed-modules:    Codec.Chunky
                    , Codec.Chunky.Internal
  -- other-modules:       
  build-depends:      base ==4.6.*
                    , binary >= 0.5.1.1 && < 0.8
                    , bytestring >= 0.10.0.0 && < 0.11
                    , text >= 0.11.3.1 && < 1.3
  hs-source-dirs:   src/lib

executable chunky-test
  hs-source-dirs:   src/chunky-test
  main-is:          Main.hs
  build-depends:      base ==4.6.*
                    , binary >= 0.5.1.1 && < 0.8
                    , bytestring >= 0.10.0.0 && < 0.11
                    , chunky >= 0.1.0.0
                    , text >= 0.11.3.1 && < 1.3

test-suite test-roundtrip
  type:     exitcode-stdio-1.0
  main-is:  RoundtripTest.hs
  hs-source-dirs:   test/
  build-depends:      base ==4.6.*
                    , binary >= 0.5.1.1 && < 0.8
                    , bytestring >= 0.10.0.0 && < 0.11
                    , chunky >= 0.1.0.0
                    , HUnit >= 1.2.5.2 && < 1.3
                    , text >= 0.11.3.1 && < 1.3