-
Notifications
You must be signed in to change notification settings - Fork 0
/
libatrade.cabal
103 lines (99 loc) · 3.51 KB
/
libatrade.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
name: libatrade
version: 0.12.0.0
synopsis: ATrade infrastructure core library
description: Please see README.md
homepage: https://github.com/asakul/libatrade.git
license: BSD3
license-file: LICENSE
author: Denis Tereshkin
maintainer: [email protected]
copyright: 2018 Denis Tereshkin
category: Trading
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wincomplete-patterns
exposed-modules: ATrade.Types
, ATrade.Price
, ATrade.Logging
, ATrade.QuoteSource.Client
, ATrade.QuoteSource.Server
, ATrade.Broker.Backend
, ATrade.Broker.Client
, ATrade.Broker.Protocol
, ATrade.Broker.Server
, ATrade.Broker.TradeSinks.TelegramTradeSink
, ATrade.Broker.TradeSinks.ZMQTradeSink
, ATrade.Util
, ATrade
other-modules: Paths_libatrade
build-depends: base >= 4.7 && < 5
, BoundedChan
, aeson
, bimap
, binary
, bytestring
, connection
, containers
, datetime
, errors
, extra
, gitrev
, http-client
, http-client-tls
, monad-loops
, parsec
, safe
, scientific
, text
, th-printf
, time
, unordered-containers
, utf8-string
, zeromq4-haskell
, zeromq4-haskell-zap
, co-log
, ansi-terminal
default-language: Haskell2010
test-suite libatrade-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, libatrade
, tasty
, tasty-hunit
, tasty-golden
, tasty-smallcheck
, tasty-quickcheck
, tasty-hspec
, quickcheck-text
, quickcheck-instances
, scientific
, tuple
, time
, aeson
, text
, BoundedChan
, zeromq4-haskell
, zeromq4-haskell-zap
, bytestring
, monad-loops
, uuid
, stm
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wincomplete-patterns -Wno-orphans
default-language: Haskell2010
other-modules: ArbitraryInstances
, MockBroker
, TestBrokerClient
, TestBrokerProtocol
, TestBrokerServer
, TestQuoteSourceClient
, TestQuoteSourceServer
, TestTypes
, TestZMQTradeSink
source-repository head
type: git
location: https://github.com/asakul/libatrade.git