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 13:16:33 +03:00
|
|
|
version: 0.1.0.1
|
2017-05-17 13:08:45 +03:00
|
|
|
synopsis: Straightforward validation monad. Convenient solution for validating web forms and APIs.
|
|
|
|
-- description:
|
|
|
|
homepage: typeable.io
|
|
|
|
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
|
|
|
|
|
|
|
|
library
|
2017-05-17 13:11:49 +03:00
|
|
|
exposed-modules: Control.Monad.Validation
|
2017-05-17 13:08:45 +03:00
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
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
|
|
|
|
, transformers
|
|
|
|
, lens
|
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|