-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarket-data.cabal
41 lines (39 loc) · 1.36 KB
/
market-data.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
-- Initial market-data.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: market-data
version: 0.1.0.0
-- description:
license: MIT
license-file: LICENSE
author: adrian
maintainer: adplani@gmail.com
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable market-data
main-is: Main.hs
ghc-options:
-Wall
-Werror
-threaded
-- -ddump-splices
other-modules: Network
, Parser.Quote
, Pipeline
, Config
, FileCombinator
build-depends: base >=4.11 && <5
, network == 2.6.3.2
, binary >= 0.8.5.1
, conduit >= 1.3.0.3
, conduit-extra >= 1.3.0
, bytestring == 0.10.*
, resourcet
, text == 1.2.3.1
, time >= 1.4 && < 1.10
, Decimal == 0.5.1
, parsergen == 0.2.0.8
, cmdargs == 0.10.20
, iproute >= 1.7.7
hs-source-dirs: src
default-language: Haskell2010