forked from mkawalec/emailparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemailparse.cabal
95 lines (91 loc) · 3.28 KB
/
emailparse.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
-- Initial emailparse.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: emailparse
version: 0.2.0.10
synopsis: An email parser that will parse everything
--description:
license: BSD3
license-file: LICENSE
author: Michal Kawalec
maintainer: michal@monad.cat
-- copyright:
category: Network
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/mkawalec/emailparse
library
exposed-modules: Network.Mail.Parse
Network.Mail.Parse.Types
Network.Mail.Parse.Utils
Network.Mail.Parse.Decoders.BodyDecoder
Network.Mail.Parse.Decoders.FormatDecoders
Network.Mail.Parse.Parsers.Header
Network.Mail.Parse.Parsers.HeaderFields
Network.Mail.Parse.Parsers.Message
Network.Mail.Parse.Parsers.Multipart
Network.Mail.Parse.Parsers.Utils
-- other-modules:
-- other-extensions:
build-depends: base >=4.10 && <5.0,
bytestring,
attoparsec,
word8,
text,
mime,
either,
text-icu,
time,
strptime
hs-source-dirs: src
c-sources: csrc/codec.c
include-dirs: csrc
cc-options: -fPIC -Wall -Wextra
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind
default-extensions: OverloadedStrings,
GeneralizedNewtypeDeriving,
BangPatterns,
ScopedTypeVariables,
TypeSynonymInstances,
DeriveFunctor,
DeriveGeneric,
FlexibleInstances,
TemplateHaskell,
LambdaCase
Test-Suite emailparse-test
type: exitcode-stdio-1.0
main-is: main.hs
hs-source-dirs: test, src
build-depends: base >=4.10 && <5.0,
bytestring,
attoparsec,
word8,
text,
mime,
either,
text-icu,
time,
strptime,
tasty,
HUnit,
QuickCheck,
tasty-hunit,
tasty-quickcheck,
mtl
c-sources: csrc/codec.c
include-dirs: csrc
cc-options: -fPIC -Wall -Wextra
default-language: Haskell2010
default-extensions: OverloadedStrings,
GeneralizedNewtypeDeriving,
BangPatterns,
ScopedTypeVariables,
TypeSynonymInstances,
DeriveFunctor,
DeriveGeneric,
FlexibleInstances,
TemplateHaskell,
LambdaCase