packages feed

validationt-0.2.1.0: validationt.cabal

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

name:                validationt
version:             0.2.1.0
synopsis:            Straightforward validation monad.
description:         Convenient solution for validating web forms and APIs.
homepage:            https://github.com/typeable/validationt
license:             BSD3
license-file:        LICENSE
author:              Typeable.io contributors
maintainer:          makeit@typeable.io
-- copyright:
category:            Control
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10
tested-with:         GHC == 7.10.3
                   , GHC == 8.0.2
                   , GHC == 8.2.2
                   , GHC == 8.4.1

source-repository head
  type:     git
  location: git@github.com:typeable/validationt.git

library
  exposed-modules:    Control.Monad.Validation
  build-depends:       base >=4.8 && < 5
                     , aeson >= 1.0
                     , containers
                     , exceptions
                     , lens
                     , monad-control
                     , mtl
                     , QuickCheck
                     , text
                     , transformers
                     , transformers-base
                     , transformers-lift
                     , vector
  hs-source-dirs:      src
  default-language:    Haskell2010