-
Notifications
You must be signed in to change notification settings - Fork 4
/
rss-conduit.cabal
128 lines (120 loc) · 3.03 KB
/
rss-conduit.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
122
123
124
125
126
127
128
cabal-version: 2.2
name: rss-conduit
version: 0.6.0.0
build-type: Simple
license: CC0-1.0
license-file: LICENSE
author: koral
maintainer: [email protected]
bug-reports: https://github.com/k0ral/rss-conduit/issues
synopsis: Streaming parser/renderer for the RSS standard.
description: Cf README file.
category: XML, Conduit
tested-with: GHC <8.9 && >=8.4.2
extra-source-files:
README.md
source-repository head
type: git
location: git://github.com/k0ral/rss-conduit.git
flag enable-hlint-test
description: Enable hlint test-suite
manual: True
default: False
common common
build-depends: base >=4.7 && <5, base-compat-batteries
default-language: Haskell2010
library
import: common
exposed-modules:
Text.RSS1.Conduit.Parse
Text.RSS.Conduit.Parse
Text.RSS.Conduit.Parse.Simple
Text.RSS.Conduit.Render
Text.RSS.Extensions
Text.RSS.Extensions.Atom
Text.RSS.Extensions.Content
Text.RSS.Extensions.DublinCore
Text.RSS.Extensions.Syndication
Text.RSS.Lens
Text.RSS.Types
other-modules:
Text.RSS.Lens.Rules
build-depends:
atom-conduit >=0.5,
conduit >= 1.3,
conduit-combinators -any,
containers -any,
dublincore-xml-conduit -any,
safe-exceptions -any,
microlens -any,
microlens-th -any,
safe -any,
text -any,
template-haskell -any,
time >=1.5,
timerep >=2.0.1,
uri-bytestring >=0.2,
xml-conduit >=1.9,
xml-types -any
hs-source-dirs: src
test-suite tests
import: common
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends:
rss-conduit,
atom-conduit >=0.5,
blaze-builder -any,
bytestring -any,
conduit -any,
conduit-combinators -any,
data-default -any,
dublincore-xml-conduit -any,
filepath -any,
microlens -any,
mono-traversable -any,
resourcet -any,
safe-exceptions -any,
tasty -any,
tasty-golden -any,
tasty-hunit -any,
time >=1.5,
text -any,
uri-bytestring >=0.2,
xml-conduit >=1.9,
xml-types -any
hs-source-dirs: test
test-suite quickcheck-tests
import: common
type: exitcode-stdio-1.0
main-is: QuickCheck.hs
build-depends:
rss-conduit,
atom-conduit >=0.5,
blaze-builder -any,
bytestring -any,
conduit -any,
dublincore-xml-conduit -any,
filepath -any,
QuickCheck -any,
quickcheck-instances -any,
tasty -any,
tasty-quickcheck -any,
time >=1.5,
text -any,
uri-bytestring >=0.2,
xml-conduit >=1.9,
xml-types -any
hs-source-dirs: test
other-modules:
Arbitrary
test-suite hlint
import: common
if flag(enable-hlint-test)
buildable: True
else
buildable: False
type: exitcode-stdio-1.0
main-is: HLint.hs
build-depends: hlint -any
hs-source-dirs: test