2017-05-17 13:08:45 +03:00
|
|
|
-- Initial validationt.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: validationt
|
2017-05-17 14:08:23 +03:00
|
|
|
version: 0.2.0.0
|
2018-04-09 19:42:52 +03:00
|
|
|
synopsis: Straightforward validation monad.
|
|
|
|
description: Convenient solution for validating web forms and APIs.
|
|
|
|
homepage: https://github.com/typeable/validationt
|
2017-05-17 13:08:45 +03:00
|
|
|
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
|
2018-04-05 21:18:31 +03:00
|
|
|
tested-with: GHC == 7.10.3
|
|
|
|
, GHC == 8.0.2
|
|
|
|
, GHC == 8.2.2
|
|
|
|
, GHC == 8.4.1
|
2017-05-17 13:08:45 +03:00
|
|
|
|
2018-04-09 19:42:52 +03:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: git@github.com:typeable/validationt.git
|
|
|
|
|
2017-05-17 13:08:45 +03:00
|
|
|
library
|
2017-05-17 13:11:49 +03:00
|
|
|
exposed-modules: Control.Monad.Validation
|
2017-05-17 13:10:41 +03:00
|
|
|
build-depends: base >=4.8 && < 5
|
2017-05-17 13:08:45 +03:00
|
|
|
, aeson >= 1.0
|
2017-05-17 14:07:47 +03:00
|
|
|
, containers
|
|
|
|
, exceptions
|
2017-05-17 13:08:45 +03:00
|
|
|
, lens
|
2017-05-17 14:07:47 +03:00
|
|
|
, monad-control
|
|
|
|
, mtl
|
|
|
|
, QuickCheck
|
|
|
|
, text
|
|
|
|
, transformers
|
|
|
|
, transformers-base
|
|
|
|
, transformers-lift
|
|
|
|
, vector
|
2018-04-05 21:17:48 +03:00
|
|
|
if impl(ghc < 8.0)
|
|
|
|
build-depends: semigroups == 0.18.*
|
2017-05-17 13:08:45 +03:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|