forked from input-output-hk/cardano-sl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcardano-sl-client.cabal
151 lines (135 loc) · 4.88 KB
/
cardano-sl-client.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
name: cardano-sl-client
version: 1.3.0
synopsis: Cardano SL client modules
description: Cardano SL client modules
license: MIT
license-file: LICENSE
author: Serokell
maintainer: [email protected]
copyright: 2017 IOHK
category: Currency
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules:
Pos.Client.Txp
Pos.Client.Txp.Addresses
Pos.Client.Txp.Balances
Pos.Client.Txp.History
Pos.Client.Txp.Network
Pos.Client.Txp.Util
Pos.Client.Update
Pos.Client.Update.Network
Pos.Client.KeyStorage
build-depends: base
, cardano-sl
, cardano-sl-chain
, cardano-sl-core
, cardano-sl-crypto
, cardano-sl-db
, cardano-sl-infra
, cardano-sl-util
, containers
, data-default
, formatting
, lens
, mtl
, safe-exceptions
, serokell-util
, stm
, formatting
, transformers
, universum
, unordered-containers
, vector
, QuickCheck
default-extensions: DeriveDataTypeable
DeriveGeneric
GeneralizedNewtypeDeriving
StandaloneDeriving
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
FunctionalDependencies
DefaultSignatures
NoImplicitPrelude
OverloadedStrings
TypeApplications
TupleSections
ViewPatterns
LambdaCase
MultiWayIf
ConstraintKinds
UndecidableInstances
BangPatterns
TemplateHaskell
ScopedTypeVariables
MonadFailDesugaring
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
-O2
build-tools: cpphs >= 1.19
ghc-options: -pgmP cpphs -optP --cpp
test-suite cardano-client-test
main-is: Test.hs
other-modules:
Spec
-- Txp
Test.Pos.Client.Txp.Mode
Test.Pos.Client.Txp.UtilSpec
type: exitcode-stdio-1.0
build-depends:
base
, bytestring
, cardano-sl
, cardano-sl-chain
, cardano-sl-client
, cardano-sl-core
, cardano-sl-core-test
, cardano-sl-crypto
, cardano-sl-crypto-test
, cardano-sl-db
, cardano-sl-util
, cardano-sl-util-test
, containers
, formatting
, hspec
, QuickCheck
, universum >= 0.1.11
, unordered-containers
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded
-rtsopts
-Wall
-- linker speed up for linux
if os(linux)
ghc-options: -optl-fuse-ld=gold
ld-options: -fuse-ld=gold
default-extensions: DeriveDataTypeable
DeriveGeneric
GeneralizedNewtypeDeriving
StandaloneDeriving
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
FunctionalDependencies
DefaultSignatures
NoImplicitPrelude
OverloadedStrings
TypeApplications
TupleSections
ViewPatterns
LambdaCase
MultiWayIf
ConstraintKinds
UndecidableInstances
BangPatterns
TemplateHaskell
ScopedTypeVariables
GADTs
MonadFailDesugaring
build-tools: cpphs >= 1.19
ghc-options: -pgmP cpphs -optP --cpp