-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhweblib.cabal
121 lines (110 loc) · 3.84 KB
/
hweblib.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
Name: hweblib
Version: 0.8.4
Synopsis: Haskell Web Library
Description: This library includes attoparsec based incremental parsers for
rfc7230 (http) and rfc3986 (uri), rfc2045-46 (mime). The package
name will subject to change due to broad range of rfc coverage.
Homepage: http://github.com/aycanirican/hweblib
License: BSD3
License-file: LICENSE
Author: Aycan iRiCAN <[email protected]>, Utku Demir <[email protected]>
Maintainer: [email protected]
Category: Web
Build-type: Simple
Cabal-version: >= 1.10
Tested-With: GHC == 8.10.2
, GHC == 8.8.4
, GHC == 8.6.5
, GHC == 8.4.4
Extra-Source-Files: README.md tests/mime-wiki.txt tests/benchmark-results.txt
Library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -O2
-- Modules exported by the library.
exposed-modules: Network.Types
, Network.Http
, Network.Message
, Network.Parser.RfcCommon
, Network.Parser.Rfc2045
, Network.Parser.Rfc2046
, Network.Parser.Rfc2183
, Network.Parser.Rfc2234
, Network.Parser.Rfc2388
, Network.Parser.Rfc2822
, Network.Parser.Rfc4647
, Network.Parser.Rfc5234
, Network.Parser.Rfc3986
, Network.Parser.Rfc5322
, Network.Parser.Rfc5646
, Network.Parser.Rfc7230
, Network.Parser.Rfc7231
, Network.Parser.Rfc7232
, Network.Parser.Rfc7233
, Network.Parser.Rfc7234
, Network.Parser.Mime
, Network.Parser.Utils
-- Packages needed in order to build this package.
build-depends: base
, containers
, bytestring
, mtl
, transformers
, text
, attoparsec
, scientific
, time
, case-insensitive
, base64-bytestring
, tagsoup
test-suite doctest
type: exitcode-stdio-1.0
main-is: doctests.hs
hs-source-dirs: tests
build-depends: base
, bytestring
, doctest
, Glob
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
test-suite hunit
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: hunit.hs
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
other-modules: Test.Parser.Rfc3986
, Test.Parser.Rfc2045
, Test.Parser.Rfc2822
, Test.Parser.Rfc7230
, Test.Parser.Parser
build-depends: base
, containers
, bytestring
, mtl
, transformers
, attoparsec
, scientific
, HUnit
, time
, text
, hweblib
benchmark common-parses
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks tests
main-is: common-parses.hs
hs-source-dirs: benchmarks tests
default-language: Haskell2010
ghc-options: -w -O2 -threaded -fdicts-cheap -funbox-strict-fields
build-depends: base >= 4 && < 5
, containers
, bytestring
, mtl
, transformers
, attoparsec
, criterion
, HUnit
, hweblib
source-repository head
type: git
location: git://github.com/aycanirican/hweblib.git