forked from Feeld/email-validate-hs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
email-validate.cabal
60 lines (55 loc) · 1.63 KB
/
email-validate.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: email-validate
version: 2.3.2.16
license: BSD3
license-file: LICENSE
author: George Pollard <[email protected]>
maintainer: George Pollard <[email protected]>
homepage: https://github.com/Porges/email-validate-hs
category: Text
synopsis: Email address validation
description: Validating an email address string against RFC 5322
build-type: Simple
stability: experimental
cabal-version: >= 1.10
source-repository head
type: git
location: git://github.com/seereason/email-validate-hs.git
source-repository this
type: git
location: git://github.com/seereason/email-validate-hs.git
tag: v2.3.2.16
library
build-depends:
base >= 4.4 && < 5,
attoparsec >= 0.10.0 && < 0.15,
bytestring >= 0.9 && < 0.12,
template-haskell >= 2.10.0.0 && < 2.19,
case-insensitive >= 1.2.0.11 && < 1.3
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
Text.Email.QuasiQuotation,
Text.Email.Validate,
Text.Email.Parser
test-suite Main
type: exitcode-stdio-1.0
main-is: Main.hs
ghc-options: -threaded
hs-source-dirs: tests
default-language: Haskell2010
build-depends:
email-validate,
base >= 4 && < 5,
hspec >= 2.2.3 && < 2.10,
QuickCheck >= 2.4 && < 2.15,
bytestring >= 0.9 && < 0.12
test-suite doctests
type: exitcode-stdio-1.0
ghc-options: -threaded
default-language: Haskell2010
hs-source-dirs: tests
main-is: doctests.hs
build-depends:
base >= 4 && < 5,
doctest >= 0.8 && < 0.21