-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathhydra-cluster.cabal
228 lines (210 loc) · 4.94 KB
/
hydra-cluster.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
cabal-version: 3.0
name: hydra-cluster
version: 0.15.0
synopsis:
Integration test suite using a local cluster of cardano and hydra nodes
author: IOG
copyright: 2022 IOG
license: Apache-2.0
license-files:
LICENSE
NOTICE
extra-source-files: README.md
data-files:
config/credentials/alice.sk
config/credentials/alice.vk
config/credentials/bob.sk
config/credentials/bob.vk
config/credentials/carol.sk
config/credentials/carol.vk
config/credentials/faucet.sk
config/credentials/faucet.vk
config/devnet/byron-delegate.key
config/devnet/byron-delegation.cert
config/devnet/cardano-node.json
config/devnet/genesis-alonzo.json
config/devnet/genesis-byron.json
config/devnet/genesis-conway.json
config/devnet/genesis-shelley.json
config/devnet/kes.skey
config/devnet/opcert.cert
config/devnet/vrf.skey
config/protocol-parameters.json
source-repository head
type: git
location: https://github.com/input-output-hk/hydra
common project-config
default-language: GHC2021
default-extensions:
DataKinds
DefaultSignatures
DeriveAnyClass
DerivingStrategies
FunctionalDependencies
GADTs
LambdaCase
MultiWayIf
NoImplicitPrelude
OverloadedStrings
PartialTypeSignatures
PatternSynonyms
TypeFamilies
ViewPatterns
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints -Wunused-packages
-fprint-potential-instances
library
import: project-config
hs-source-dirs: src
exposed-modules:
CardanoClient
CardanoNode
Hydra.Cluster.Faucet
Hydra.Cluster.Fixture
Hydra.Cluster.Options
Hydra.Cluster.Scenarios
Hydra.Cluster.Util
Hydra.Generator
Hydra.LogFilter
HydraNode
Paths_hydra_cluster
build-depends:
, aeson
, async
, base >=4.7 && <5
, bytestring
, cardano-slotting
, containers
, contra-tracer
, data-default
, directory
, filepath
, http-conduit
, hydra-cardano-api
, hydra-node
, hydra-prelude
, hydra-test-utils
, io-classes
, iohk-monitoring
, lens
, lens-aeson
, optparse-applicative
, plutus-ledger-api:plutus-ledger-api-testlib >=1.9.1.0
, process
, QuickCheck
, req
, temporary
, text
, time
, unix
, websockets
ghc-options: -haddock
executable hydra-cluster
import: project-config
hs-source-dirs: exe/hydra-cluster
main-is: Main.hs
ghc-options: -threaded -rtsopts
build-depends:
, hydra-cluster
, hydra-node
, hydra-prelude
, hydra-test-utils
, optparse-applicative
build-tool-depends: hydra-node:hydra-node
ghc-options: -threaded -rtsopts
executable log-filter
import: project-config
hs-source-dirs: exe/log-filter
main-is: Main.hs
ghc-options: -threaded -rtsopts
build-depends:
, aeson
, base >=4.7 && <5
, bytestring
, hydra-cluster
, hydra-node
, hydra-prelude
, optparse-applicative
test-suite tests
import: project-config
hs-source-dirs: test
main-is: Main.hs
type: exitcode-stdio-1.0
other-modules:
Paths_hydra_cluster
Spec
Test.CardanoClientSpec
Test.CardanoNodeSpec
Test.ChainObserverSpec
Test.DirectChainSpec
Test.EndToEndSpec
Test.GeneratorSpec
Test.Hydra.Cluster.CardanoCliSpec
Test.Hydra.Cluster.FaucetSpec
Test.LogFilterSpec
Test.OfflineChainSpec
build-depends:
, aeson
, async
, base >=4.7 && <5
, bytestring
, containers
, directory
, filepath
, hspec
, hydra-cardano-api
, hydra-cluster
, hydra-node:{hydra-node, testlib}
, hydra-prelude
, hydra-test-utils
, io-classes
, lens
, lens-aeson
, process
, QuickCheck
, stm
, text
, time
build-tool-depends:
, hspec-discover:hspec-discover
, hydra-chain-observer:hydra-chain-observer
, hydra-node:hydra-node
ghc-options: -threaded -rtsopts
benchmark bench-e2e
import: project-config
hs-source-dirs: bench
main-is: Main.hs
type: exitcode-stdio-1.0
other-modules:
Bench.EndToEnd
Bench.Options
Bench.Summary
build-depends:
, aeson
, base >=4.7 && <5
, base16-bytestring
, bytestring
, cardano-binary
, containers
, directory
, filepath
, HUnit
, hydra-cardano-api
, hydra-cluster
, hydra-node
, hydra-prelude
, hydra-test-utils
, io-classes
, lens
, lens-aeson
, optparse-applicative
, process
, QuickCheck
, regex-tdfa
, scientific
, statistics
, time
, vector
build-tool-depends: hydra-node:hydra-node
ghc-options: -threaded -rtsopts