-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-email-validate.cabal
67 lines (62 loc) · 2.07 KB
/
html-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
61
62
63
64
65
66
67
-- This file has been generated from package.yaml by hpack version 0.14.1.
--
-- see: https://github.com/sol/hpack
name: html-email-validate
version: 0.2.0.0
synopsis: Validating an email address against HTML standard
description: The library allows to validate and parse an email address as it's defined in <https://html.spec.whatwg.org/multipage/forms.html#valid-e-mail-address HTML standard>.
.
.
Note that HTML specification of a valid email address is a 'willful violation' of RFC 5322. If you want to validate an address against RFC 5322 you should use <https://hackage.haskell.org/package/email-validate email-validate>.
license: BSD3
license-file: LICENSE
author: Konstantin Zudov <[email protected]>
maintainer: Konstantin zudov <[email protected]>
copyright: (c) Konstantin Zudov, 2015, 2016
category: Text
homepage: https://github.com/zudov/html-email-validate#readme
bug-reports: https://github.com/zudov/html-email-validate/issues
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/zudov/html-email-validate
library
exposed-modules:
Text.Html.Email.Validate
other-modules:
Paths_html_email_validate
other-extensions: OverloadedStrings RecordWildCards DeriveDataTypeable DeriveGeneric
build-depends:
base >=4.7 && <5.0
, text
, attoparsec
hs-source-dirs:
src/
default-language: Haskell2010
ghc-options: -Wall
test-suite test
hs-source-dirs:
tests/
main-is: Main.hs
type: exitcode-stdio-1.0
build-depends:
base >=4.7 && <5.0
, text
, attoparsec
, hspec
, regex-pcre-builtin
, html-email-validate
, QuickCheck
default-language: Haskell2010
benchmark bench
type: exitcode-stdio-1.0
hs-source-dirs:
bench
main-is: Main.hs
build-depends:
base >=4.7 && <5.0
, text
, html-email-validate
, criterion
default-language: Haskell2010