packages feed

deiko-config-0.5.0.0: deiko-config.cabal

name:                deiko-config
version:             0.5.0.0
synopsis: Small and typesafe configuration library.
description: Small and typesafe configuration library. The library provides good error messages and comes with a bottom-up typechecker in order to catch more configuration errors.
license:             BSD3
license-file:        LICENSE
author:              Yorick Laupa
maintainer:          yo.eight@gmail.com
homepage:            http://github.com/YoEight/deiko-config
bug-reports:         https://github.com/YoEight/deiko-config/issues
copyright:           Copyright (C) 2014 Yorick Laupa
stability:           experimental
category:            Data
build-type:          Simple
cabal-version:       >=1.18

source-repository head
  type: git
  location: git://github.com/YoEight/deiko-config.git

library
    default-language: Haskell2010
    exposed-modules: Data.Config
    other-modules: Data.Config.Internal.AST
                   Data.Config.Internal.DkM
                   Data.Config.Internal.Parser
                   Data.Config.Internal.Pos
                   Data.Config.Internal.Reg
                   Data.Config.Internal.Register
                   Data.Config.Internal.Rename
                   Data.Config.Internal.Scoped
                   Data.Config.Internal.Typed
                   Data.Config.Internal.Typecheck
    build-depends:
        base         >= 4.7      && < 5,
        array        >= 0.5      && < 0.6,
        mtl          >= 2.0      && < 3.0,
        parsec       >= 3.1.2,
        text         >= 1.0      && < 1.2,
        transformers >= 0.3      && < 0.6,
        containers,
        exceptions
   ghc-options: -Wall