validationt/validationt.cabal

72 lines
2.3 KiB
Plaintext
Raw Normal View History

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
version: 0.3.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
2020-01-20 19:55:50 +03:00
tested-with: GHC == 8.4.4
, GHC == 8.6.5
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
type: exitcode-stdio-1.0
hs-source-dirs: test
ghc-options: -Wall
main-is: Doc.hs
default-language: Haskell2010
2020-01-20 19:57:26 +03:00
build-depends: base >=4.8 && < 5
, aeson >= 1.0
, doctest
, containers
, exceptions
, lens
, monad-control
, mtl
, QuickCheck
, text
, transformers
, transformers-base
, vector
, doctest