data-check-0.1.1: data-check.cabal
name: data-check
version: 0.1.1
cabal-version: >= 1.10
tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.1
license: BSD3
license-file: LICENSE.md
author: Mark Karpov <markkarpov92@gmail.com>
maintainer: Mark Karpov <markkarpov92@gmail.com>
homepage: https://github.com/mrkkrp/data-check
bug-reports: https://github.com/mrkkrp/data-check/issues
category: Data, Web
synopsis: Library for checking and normalization of data (e.g. from web forms)
build-type: Simple
description: Library for checking and normalization of data (e.g. from web forms).
extra-doc-files: CHANGELOG.md
, README.md
source-repository head
type: git
location: https://github.com/mrkkrp/data-check.git
flag dev
description: Turn on development settings.
manual: True
default: False
library
build-depends: base >= 4.8 && < 5.0
, containers >= 0.5 && < 0.6
if !impl(ghc >= 8.0)
build-depends: semigroups == 0.18.*
exposed-modules: Data.Check
if flag(dev)
ghc-options: -Wall -Werror
else
ghc-options: -O2 -Wall
default-language: Haskell2010
test-suite tests
main-is: Main.hs
hs-source-dirs: tests
type: exitcode-stdio-1.0
build-depends: base >= 4.7 && < 5.0
, QuickCheck >= 2.4 && < 3.0
, data-check
, hspec >= 2.0 && < 3.0
if flag(dev)
ghc-options: -Wall -Werror
else
ghc-options: -O2 -Wall
default-language: Haskell2010