forked from qnikst/HaskellNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HaskellNet.cabal
60 lines (54 loc) · 1.52 KB
/
HaskellNet.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: HaskellNet
Synopsis: Client support for POP3, SMTP, and IMAP
Description: This package provides client support for the POP3,
SMTP, and IMAP protocols. NOTE: this package will be
split into smaller, protocol-specific packages in the
future.
Version: 0.5.1
Copyright: (c) 2006 Jun Mukai
Author: Jun Mukai
Maintainer: Jonathan Daugherty <[email protected]>,
Leza Morais Lutonda <[email protected]>
License: BSD3
License-file: LICENSE
Category: Network
Homepage: https://github.com/jtdaugherty/HaskellNet
Cabal-version: >=1.6
Build-type: Simple
Extra-Source-Files:
CHANGELOG
README.md
example/*.hs
Source-Repository head
type: git
location: git://github.com/jtdaugherty/HaskellNet.git
Library
Hs-Source-Dirs: src
GHC-Options: -Wall -fno-warn-unused-do-bind
Exposed-modules:
Network.HaskellNet.IMAP
Network.HaskellNet.IMAP.Connection
Network.HaskellNet.IMAP.Types
Network.HaskellNet.IMAP.Parsers
Network.HaskellNet.SMTP
Network.HaskellNet.POP3
Network.HaskellNet.POP3.Connection
Network.HaskellNet.POP3.Types
Network.HaskellNet.BSStream
Network.HaskellNet.Auth
Network.HaskellNet.Debug
Other-modules:
Text.Packrat.Pos
Text.Packrat.Parse
Build-Depends:
base >= 4 && < 5,
network >= 2 && < 3.2,
mtl,
bytestring,
pretty,
array,
cryptohash,
base64-string,
old-time,
mime-mail >= 0.4.7 && < 0.6,
text