-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvalidationt.cabal
66 lines (62 loc) · 2.13 KB
/
validationt.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
-- Initial validationt.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: validationt
version: 0.3.0
synopsis: Straightforward validation monad
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.
.
homepage: https://github.com/typeable/validationt
license: BSD3
license-file: LICENSE
author: Typeable.io contributors
maintainer: [email protected]
-- copyright:
category: Control
build-type: Simple
extra-source-files: ChangeLog.md
, README.md
cabal-version: >=1.10
tested-with: GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.2
source-repository head
type: git
location: [email protected]: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
, vector
hs-source-dirs: src
default-language: Haskell2010
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
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
ghc-options: -Wall
main-is: Doc.hs
build-depends:
base >= 4.10.0.0
, doctest >= 0.11.4
, validationt