packages feed

validate-input-0.1.0.0: validate-input.cabal

name:                validate-input
version:             0.1.0.0
synopsis:            Input validation combinator library
description:         A small Haskell combinator library that provides a simple way of validating user provided data structures.
homepage:            https://github.com/agrafix/validate-input
bug-reports:         https://github.com/agrafix/validate-input/issues
license:             MIT
license-file:        LICENSE
author:              Alexander Thiemann <mail@athiemann.net>
maintainer:          Alexander Thiemann <mail@athiemann.net>
copyright:           (c) 2015 Alexander Thiemann
category:            Web
build-type:          Simple
cabal-version:       >=1.10
tested-with:
    GHC == 7.8.3

source-repository head
  type: git
  location: git://github.com/agrafix/validate-input.git

library
  exposed-modules:     Data.Validator
  build-depends:
                      base >=4.6 && <5,
                      bytestring >=0.10,
                      either >=4.3,
                      mtl >=2.1,
                      pcre-heavy >=0.2,
                      stringable >=0.1,
                      text >=1.2
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -auto-all -Wall -fno-warn-orphans