-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedGetter.cabal
45 lines (43 loc) · 1.31 KB
/
feedGetter.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
-- Initial feedGetter.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: feedGetter
version: 0.2.0.0
synopsis: An RSS downloader
-- description:
homepage: https://github.com/orblivion/feedGetter
license: MIT
license-file: LICENSE
author: Daniel Krol
maintainer: dan@danielkrol.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: README
cabal-version: >=1.10
executable feedGetter
main-is: rss.hs
-- other-modules:
-- other-extensions:
build-depends:
base >=4.11 && <4.12,
cryptohash >=0.11 && <0.12,
random-shuffle >=0.0 && <0.1,
stm >=2.5 && <2.6,
transformers >=0.5 && <0.6,
transformers-either >=0.1 && <0.2,
monads-tf >=0.1 && <0.2,
bytestring >=0.10 && <0.11,
directory >=1.3 && <1.4,
filepath >=1.4 && <1.5,
split >=0.2 && <0.3,
containers >=0.6 && <0.7,
groom >=0.1 && <0.2,
yaml-light >=0.1 && <0.2,
async >=2.2 && <2.3,
network-uri >=2.6 && <2.7,
conduit >=1.3 && <1.4,
conduit-extra >=1.3 && <1.4,
http-conduit >=2.3 && <2.4,
xml >=1.3 && <1.4
-- hs-source-dirs:
default-language: Haskell2010