-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskell-hashtag-viewer.cabal
39 lines (35 loc) · 2.12 KB
/
haskell-hashtag-viewer.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
-- Initial haskell-hashtag-viewer.cabal generated by cabal init. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: haskell-hashtag-viewer
version: 0.1.0.0
synopsis: Poll for pictures on Twitter
-- description:
homepage: http://bitbucket.org/davidfontenot
license: MIT
license-file: LICENSE
author: David Fontenot
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
extra-source-files: Readme.md
cabal-version: >=1.10
-- help from: http://stackoverflow.com/a/14241228/854854
executable TwitterPoller
main-is: TwitterPoller.hs
ghc-options: -O2 -threaded -with-rtsopts=-N -main-is TwitterPoller
build-depends: base >=4.8 && <=5.0, bytestring >=0.10 && <0.11, authenticate-oauth >=1.5 && <1.6, http-client >=0.4 && <0.5, http-client-tls >=0.2 && <0.3, text >=1.2 && <=1.2.2.0, aeson >=0.9 && <= 1.2, sqlite-simple >=0.4.8.0 && <= 0.4.9.0, base64-bytestring==1.0.0.*, containers >= 0.5 && <= 0.6, mime-types==0.1.*
hs-source-dirs: src
default-language: Haskell2010
executable RandomTweetServer
hs-source-dirs: src
ghc-options: -O2 -threaded -with-rtsopts=-N -main-is RandomTweetServer
main-is: RandomTweetServer.hs
build-depends: base >= 4.8 && <=5.0, bytestring >=0.10 && <0.11, text >=1.2 && <=1.2.2.0, aeson >=0.9 && <= 1.2, sqlite-simple >=0.4.8.0 && <= 0.4.9.0, http-server==1.0.6.*, url==2.1.*, transformers >= 0.4 && <= 0.6, network-uri==2.6.*, containers >= 0.5 && <= 0.6
default-language: Haskell2010
executable WebServer
hs-source-dirs: src
ghc-options: -O2 -threaded -with-rtsopts=-N -main-is WebServer
main-is: WebServer.hs
build-depends: base >= 4.8 && <=5.0, bytestring >=0.10 && <0.11, text >=1.2 && <=1.2.2.0, http-server==1.0.6.*, url==2.1.*, directory==1.2.*, mime-types==0.1.*, filepath==1.4.*, mtl==2.2.*, transformers >= 0.4 && <= 0.6, mime-types==0.1.*, string-conversions==0.4.*, containers >= 0.5 && <= 0.6
default-language: Haskell2010