packages feed

hsini-0.4.0: hsini.cabal

name          : hsini
version       : 0.4.0
license       : BSD3
license-file  : LICENSE
author        : Magnus Therning
maintainer    : magnus@therning.org
copyright     : Magnus Therning, 2010-2014
synopsis      : Package for user configuration files (INI)
description   : None yet
build-type    : Custom
category      : Network
cabal-version : >= 1.10

source-repository head
    type     : git
    location : https://github.com/magthe/hsini.git

library
    hs-source-dirs  : src
    default-language : Haskell2010
    build-depends   : base >=4.2 && <4.9, bytestring >=0.9 && <0.11,
        containers >=0.3 && <0.6, mtl >=2.0 && <2.3, parsec ==3.1.*
    exposed-modules : Data.Ini Data.Ini.Types Data.Ini.Reader
    other-modules   : Data.Ini.Reader.Internals

test-suite hsini-tests
    type: exitcode-stdio-1.0
    hs-source-dirs: tst, src
    main-is: Main.hs
    other-modules: Ini, ReaderI
    default-language : Haskell2010
    build-depends:
        base,
        containers,
        bytestring,
        parsec,
        mtl,
        HUnit,
        tasty,
        tasty-hunit,
        tasty-quickcheck,
        tasty-th,
        QuickCheck