-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathinteractive-brokers.cabal
155 lines (143 loc) · 5.97 KB
/
interactive-brokers.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
Name: interactive-brokers
Version: 0.1
Synopsis: Interactive Brokers API
Description: Interactive Brokers API
Homepage: www.github.com/cmahon/interactive-brokers
License: BSD3
License-File: LICENSE
Author: Chris Mahon
Maintainer: [email protected]
Copyright: Chris Mahon 2014
Category: API
Build-Type: Simple
Stability: Experimental
Cabal-Version: >= 1.8
Extra-Source-Files: README.md
Source-Repository head
type: git
location: git://github.com/cmahon/interactive-brokers.git
Library
hs-source-dirs: library
ghc-options: -Wall -O2 -threaded -fprof-auto -rtsopts
default-language: Haskell2010
exposed-modules: API.IB
MVC.Socket
other-modules: API.IB.Constant
API.IB.Connection
API.IB.Data
API.IB.Enum
API.IB.Request
API.IB.Parse
API.IB.Util
Pipes.Edge
build-depends: base >= 4 && < 5,
async >= 2.0.1.4,
attoparsec >= 0.10.4.0,
bytestring >= 0.10.0.2,
containers >= 0.5.0.0,
currency >= 0.2.0.0,
data-default >= 0.5.3,
lens >= 4.0,
mvc >= 1.0,
mvc-service >= 0.1,
mtl >= 2.1.2,
network >= 2.4.1.2,
network-simple >= 0.3.0,
old-locale >= 1.0.0.5,
pipes >= 4.1.0,
pipes-concurrency >= 2.0.2,
pipes-network >= 0.6.2,
-- pipes-safe >= 2.0.2 && < 2.1,
split >= 0.2.2,
stm >= 2.4.2,
time >= 1.4.0.1,
transformers >= 0.3.0.0,
tz >= 0.0.0.5
Executable requests
main-is: Requests.hs
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded -fprof-auto -rtsopts
hs-source-dirs: executable
build-depends: base >= 4 && < 5,
async >= 2.0.1.4,
attoparsec >= 0.10.4.0,
bytestring >= 0.10.0.2,
containers >= 0.5.0.0,
data-default >= 0.5.3,
interactive-brokers >= 0.1,
lens >= 4.0,
mtl >= 2.1.2,
mvc >= 1.0,
mvc-service >= 0.1,
network >= 2.4.1.2,
network-simple >= 0.3.0,
old-locale >= 1.0.0.5,
pipes >= 4.1.0,
pipes-concurrency >= 2.0.2,
pipes-network >= 0.6.2,
split >= 0.2.2,
stm >= 2.4.2,
time >= 1.4.0.1,
transformers >= 0.3.0.0,
tz >= 0.0.0.5
Executable sockettest
main-is: SocketTest.hs
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded -fprof-auto -rtsopts
hs-source-dirs: executable
build-depends: base >= 4 && < 5,
async >= 2.0.1.4,
bytestring >= 0.10.0.2,
containers >= 0.5.0.0,
data-default >= 0.5.3,
interactive-brokers >= 0.1,
lens >= 4.0,
mtl >= 2.1.2,
mvc >= 1.0,
mvc-service >= 0.1,
network >= 2.4.1.2,
network-simple >= 0.3.0,
old-locale >= 1.0.0.5,
pipes >= 4.1.0,
pipes-concurrency >= 2.0.2,
pipes-network >= 0.6.2,
stm >= 2.4.2,
transformers >= 0.3.0.0
test-suite tasty
main-is: Tasty.hs
build-depends: base >= 4, tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck
default-language: Haskell2010
hs-source-dirs: test-suite
type: exitcode-stdio-1.0
--test-suite doctest
-- main-is: DocTest.hs
-- build-depends: base, Glob == 0.*, doctest == 0.*
-- default-language: Haskell2010
-- hs-source-dirs: test-suite
-- type: exitcode-stdio-1.0
test-suite hpc
main-is: HPC.hs
build-depends: base, process == 1.*, regex-compat == 0.*
default-language: Haskell2010
hs-source-dirs: test-suite
type: exitcode-stdio-1.0
test-suite haddock
main-is: Haddock.hs
build-depends: base, process == 1.*, regex-compat == 0.*
default-language: Haskell2010
hs-source-dirs: test-suite
type: exitcode-stdio-1.0
test-suite hlint
main-is: HLint.hs
build-depends: base, hlint == 1.8.*
default-language: Haskell2010
hs-source-dirs: test-suite
type: exitcode-stdio-1.0
benchmark benchmarks
main-is: Bench.hs
build-depends: base,
interactive-brokers >= 0.1,
criterion == 0.*
default-language: Haskell2010
hs-source-dirs: benchmark
type: exitcode-stdio-1.0