packages feed

email-validate-2.2.1: email-validate.cabal

name: email-validate
version: 2.2.1
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
maintainer: George Pollard <porges@porg.es>
stability: experimental
homepage: https://github.com/Porges/email-validate-hs
synopsis: Email address validation
description:
    Validating an email address string against RFC 5322
category: Text
author: George Pollard <porges@porg.es>

source-repository head
    type: git
    location: git://github.com/Porges/email-validate-hs.git

source-repository this
    type: git
    location: git://github.com/Porges/email-validate-hs.git
    tag: v2.2.1

library
    exposed-modules:
        Text.Domain.Parser
        Text.Email.Validate
        Text.Email.Parser
    build-depends:
        base >=4.4 && <5,
        attoparsec >=0.10.0 && <0.14,
        bytestring >=0.9 && <0.11
    default-language: Haskell2010
    hs-source-dirs: src
    ghc-options: -Wall

test-suite Main
    type: exitcode-stdio-1.0
    main-is: Main.hs
    build-depends:
        base ==4.*,
        HUnit >=1.2 && <2,
        email-validate >=2.2.1 && <2.3,
        QuickCheck >=2.4 && <2.10,
        test-framework >=0.4.1 && <0.9,
        test-framework-quickcheck2 >=0.3.0.4 && <0.4,
        test-framework-hunit >=0.3.0.2 && <0.4,
        bytestring >=0.9 && <0.11
    default-language: Haskell2010
    hs-source-dirs: tests