This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
forked from qnikst/HaskellNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HaskellNet.cabal
87 lines (78 loc) · 2.02 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
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
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 <cygnus@foobox.com>,
Leza Morais Lutonda <lemol-c@outlook.com>
License: BSD3
License-file: LICENSE
Category: Network
Homepage: https://github.com/jtdaugherty/HaskellNet
Cabal-version: >=1.8
Build-type: Simple
Tested-with:
GHC ==7.0.4
|| ==7.2.2
|| ==7.4.2
|| ==7.6.3
|| ==7.8.4
|| ==7.10.3
|| ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.1
Extra-Source-Files:
CHANGELOG
README.md
example/*.hs
Source-Repository head
type: git
location: git://github.com/jtdaugherty/HaskellNet.git
Flag network-bsd
description: Use network-bsd
manual: False
default: True
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:
Network.Compat
Text.Packrat.Pos
Text.Packrat.Parse
Build-Depends:
base >= 4.3 && < 4.14,
network >= 2.6.3.1 && < 3.2,
mtl,
bytestring >=0.10.2,
pretty,
array,
cryptohash >=0.6,
base64-string,
old-time,
mime-mail >= 0.4.7 && < 0.6,
text
if !impl(ghc >= 8.0)
Build-depends: fail >= 4.9.0.0 && <4.10
if flag(network-bsd)
Build-Depends: network-bsd >=2.7 && <2.9,
network >=2.7
else
Build-Depends: network <2.7