-
Notifications
You must be signed in to change notification settings - Fork 1
/
mail-utils.cabal
63 lines (58 loc) · 1.92 KB
/
mail-utils.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
name: mail-utils
version: 0.1.0.0
synopsis: Classifier, Filter, Parser for emails
description: Please see README.md
homepage: http://github.com/githubuser/mail-utils#readme
license: BSD3
license-file: LICENSE
author: Romain Gérard
maintainer: [email protected]
copyright: 2010 Author Romain Gérard
category: Mail
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/githubuser/mail-utils
library
hs-source-dirs: src
exposed-modules: Parser, Rule
build-depends: base >= 4.7 && < 5
, attoparsec
, base64-bytestring
, bytestring
, time
, protolude
, pcre-light
, text
, unordered-containers >= 0.2.5.1
default-language: Haskell2010
test-suite tests
hs-source-dirs: test
Main-Is: Spec.hs
Type: exitcode-stdio-1.0
Build-Depends: QuickCheck
, attoparsec
, base
, bytestring
, protolude
, unordered-containers
, mail-utils
ghc-options: -Wall -O3 -rtsopts -with-rtsopts=-K1K
default-language: Haskell2010
executable hmailclassifier
hs-source-dirs: app
main-is: Classifier.hs
ghc-options: -Wall -O3
build-depends: attoparsec
, base
, base64-bytestring
, bytestring
, protolude
, pcre-light
, text
, time
, unordered-containers >= 0.2.5.1
, mail-utils
default-language: Haskell2010