packages feed

data-validation-0.1.0.2: data-validation.cabal

cabal-version:       2.4
name:                data-validation
version:             0.1.0.2
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:              Alasconnect
maintainer:          Alasconnect <software@alasconnect.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.0.2

library
  exposed-modules:    Data.Validation
                    , Data.Validation.Internal
                    , Data.Validation.Transforms
  build-depends:      base >= 4.11.0.1 && <= 4.12.0.0
                    , template-haskell >= 2.13.0.0 && < 2.15
                    , containers >= 0.5.11.0 && < 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
  hs-source-dirs:   test
  build-depends:    base
                  , containers
                  , data-validation
                  , hspec
                  , template-haskell
  default-language:   Haskell2010
  ghc-options:      -threaded -Wall