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
|
2020-11-03 18:23:31 +03:00
|
|
|
version: 0.3.0
|
2020-11-03 18:51:29 +03:00
|
|
|
synopsis: Straightforward validation monad
|
2020-11-03 19:05:17 +03:00
|
|
|
description:
|
|
|
|
A simple data validation library. The main idea is to provide an easy way to validate web form data by aggregating errors for each field.
|
|
|
|
.
|
2018-04-09 19:42:52 +03:00
|
|
|
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
|
2020-11-03 19:01:26 +03:00
|
|
|
, README.md
|
2017-05-17 13:08:45 +03:00
|
|
|
cabal-version: >=1.10
|
2020-01-20 19:55:50 +03:00
|
|
|
tested-with: GHC == 8.4.4
|
|
|
|
, GHC == 8.6.5
|
2020-11-03 18:13:08 +03:00
|
|
|
, GHC == 8.8.4
|
2020-11-03 18:20:03 +03:00
|
|
|
, GHC == 8.10.2
|
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
|
|
|
|
, vector
|
2017-05-17 13:08:45 +03:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2020-01-20 19:57:26 +03:00
|
|
|
ghc-options: -fwarn-unused-binds
|
|
|
|
-Wall
|
|
|
|
-Wincomplete-uni-patterns
|
|
|
|
-Wincomplete-record-updates
|
|
|
|
-Wpartial-fields
|
|
|
|
-Werror=missing-home-modules
|
|
|
|
-Wmissing-home-modules
|
|
|
|
-Widentities
|
|
|
|
-Wredundant-constraints
|
|
|
|
-Wmissing-export-lists
|
|
|
|
|
|
|
|
test-suite doctest
|
2020-02-04 16:23:03 +03:00
|
|
|
default-language: Haskell2010
|
2020-01-20 19:57:26 +03:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
ghc-options: -Wall
|
|
|
|
main-is: Doc.hs
|
2020-02-04 16:23:03 +03:00
|
|
|
build-depends:
|
|
|
|
base >= 4.10.0.0
|
|
|
|
, doctest >= 0.11.4
|
|
|
|
, validationt
|