data-validation-0.1.2.4: data-validation.cabal
cabal-version: 2.4
name: data-validation
version: 0.1.2.4
synopsis: A library for creating type safe validations.
description:
A library for creating type safe validations using typeclasses.
homepage: https://github.com/alasconnect/data-validation
license: Apache-2.0
license-file: LICENSE
author: Ampersand
maintainer: Ampersand <software@ampersandtech.com>
copyright: 2020 AlasConnect LLC
category: Data
extra-source-files: CHANGELOG.md, README.md
source-repository head
type: git
location: https://github.com/alasconnect/data-validation
tag: 0.1.2.4
library
exposed-modules: Data.Validation
, Data.Validation.Internal
, Data.Validation.Transforms
build-depends: base >= 4.11.0.1 && < 5
, template-haskell >= 2.13 && < 2.16
, containers >= 0.5.11 && < 0.7
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -v0
test-suite test-data-validation
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: Data.ValidationSpec
, Data.Validation.InternalSpec
-- example tests
, Data.ExampleSpec
, Examples.Data.ComplexTypes
, Examples.Data.Primitives
hs-source-dirs: test, examples
build-depends: base
, containers
, data-validation
, hspec
, regex-tdfa
, template-haskell
default-language: Haskell2010
ghc-options: -threaded -Wall