-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathcardano-chain-gen.cabal
218 lines (207 loc) · 9.46 KB
/
cardano-chain-gen.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
cabal-version: 3.6
name: cardano-chain-gen
version: 13.3.0.0
synopsis: A fake chain generator for testing cardano DB sync.
description: A fake chain generator for testing cardano DB sync.
homepage: https://github.com/IntersectMBO/cardano-db-sync
bug-reports: https://github.com/IntersectMBO/cardano-db-sync/issues
license: Apache-2.0
license-file: LICENSE
author: IOHK Engineering Team
maintainer: [email protected]
copyright: 2020-2023 Input Output Global Inc (IOG).
category: Cryptocurrency
build-type: Custom
extra-source-files: CHANGELOG.md
schema/*.sql
custom-setup
setup-depends:
base
, Cabal
, bytestring
, cardano-crypto-class
, directory
, filepath
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
-Werror
-Wcompat
-Wredundant-constraints
-Wincomplete-patterns
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wunused-imports
-Wunused-packages
exposed-modules:
Cardano.Mock.Chain
Cardano.Mock.ChainDB
Cardano.Mock.ChainSync.Server
Cardano.Mock.ChainSync.State
Cardano.Mock.Query
Cardano.Mock.Forging.Crypto
Cardano.Mock.Forging.Interpreter
Cardano.Mock.Forging.Tx.Alonzo
Cardano.Mock.Forging.Tx.Alonzo.Scenarios
Cardano.Mock.Forging.Tx.Alonzo.ScriptsExamples
Cardano.Mock.Forging.Tx.Babbage
Cardano.Mock.Forging.Tx.Babbage.Scenarios
Cardano.Mock.Forging.Tx.Conway
Cardano.Mock.Forging.Tx.Conway.Scenarios
Cardano.Mock.Forging.Tx.Generic
Cardano.Mock.Forging.Tx.Shelley
Cardano.Mock.Forging.Types
build-depends: base >= 4.14 && < 5
, async
, aeson
, bytestring
, cardano-binary
, cardano-crypto-class
, cardano-data
, cardano-db
, cardano-ledger-allegra
, cardano-ledger-alonzo
, cardano-ledger-babbage
, cardano-ledger-conway
, cardano-ledger-binary
, cardano-ledger-core
, cardano-ledger-shelley
, cardano-ledger-mary
, cardano-prelude
, cardano-slotting
, cardano-strict-containers
, cborg
, containers
, contra-tracer
, directory
, esqueleto
, extra
, mtl
, microlens
, nothunks
, ouroboros-consensus
, ouroboros-consensus-cardano
, ouroboros-consensus-diffusion
, ouroboros-consensus-protocol
, ouroboros-network
, ouroboros-network-api
, ouroboros-network-framework
, ouroboros-network-protocols
, plutus-core
, plutus-ledger-api:{plutus-ledger-api-testlib}
, serialise
, strict-sop-core
, strict-stm
, text
, typed-protocols
test-suite cardano-chain-gen
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: Main.hs
hs-source-dirs: gen
hs-source-dirs: test
ghc-options: -Wall
-Wall
-Werror
-Wcompat
-Wredundant-constraints
-Wincomplete-patterns
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wunused-imports
-Wunused-packages
-Wno-unsafe
-threaded
autogen-modules: Paths_cardano_chain_gen
MigrationValidations
other-modules: Paths_cardano_chain_gen
MigrationValidations
other-modules: Test.Cardano.Db.Mock.Config
Test.Cardano.Db.Mock.Examples
Test.Cardano.Db.Mock.Property.Property
Test.Cardano.Db.Mock.Unit.Alonzo
Test.Cardano.Db.Mock.Unit.Alonzo.Config
Test.Cardano.Db.Mock.Unit.Alonzo.Plutus
Test.Cardano.Db.Mock.Unit.Alonzo.PoolAndSmash
Test.Cardano.Db.Mock.Unit.Alonzo.Reward
Test.Cardano.Db.Mock.Unit.Alonzo.Simple
Test.Cardano.Db.Mock.Unit.Alonzo.Stake
Test.Cardano.Db.Mock.Unit.Alonzo.Tx
Test.Cardano.Db.Mock.Unit.Babbage
Test.Cardano.Db.Mock.Unit.Babbage.CommandLineArg.ConfigFile
Test.Cardano.Db.Mock.Unit.Babbage.CommandLineArg.EpochDisabled
Test.Cardano.Db.Mock.Unit.Babbage.Config.MigrateConsumedPruneTxOut
Test.Cardano.Db.Mock.Unit.Babbage.Config.Parse
Test.Cardano.Db.Mock.Unit.Babbage.InlineAndReference
Test.Cardano.Db.Mock.Unit.Babbage.Other
Test.Cardano.Db.Mock.Unit.Babbage.Plutus
Test.Cardano.Db.Mock.Unit.Babbage.Reward
Test.Cardano.Db.Mock.Unit.Babbage.Rollback
Test.Cardano.Db.Mock.Unit.Babbage.Simple
Test.Cardano.Db.Mock.Unit.Babbage.Stake
Test.Cardano.Db.Mock.Unit.Babbage.Tx
Test.Cardano.Db.Mock.Unit.Conway
Test.Cardano.Db.Mock.Unit.Conway.CommandLineArg.ConfigFile
Test.Cardano.Db.Mock.Unit.Conway.CommandLineArg.EpochDisabled
Test.Cardano.Db.Mock.Unit.Conway.Config.JsonbInSchema
Test.Cardano.Db.Mock.Unit.Conway.Config.Parse
Test.Cardano.Db.Mock.Unit.Conway.Config.MigrateConsumedPruneTxOut
Test.Cardano.Db.Mock.Unit.Conway.Governance
Test.Cardano.Db.Mock.Unit.Conway.InlineAndReference
Test.Cardano.Db.Mock.Unit.Conway.Other
Test.Cardano.Db.Mock.Unit.Conway.Plutus
Test.Cardano.Db.Mock.Unit.Conway.Reward
Test.Cardano.Db.Mock.Unit.Conway.Rollback
Test.Cardano.Db.Mock.Unit.Conway.Simple
Test.Cardano.Db.Mock.Unit.Conway.Stake
Test.Cardano.Db.Mock.Unit.Conway.Tx
Test.Cardano.Db.Mock.UnifiedApi
Test.Cardano.Db.Mock.Validate
build-depends: aeson
, async
, base
, bytestring
, cardano-api
, cardano-crypto-class
, cardano-db
, cardano-db-sync
, cardano-chain-gen
, cardano-ledger-alonzo
, cardano-ledger-binary
, cardano-ledger-conway
, cardano-ledger-core
, cardano-ledger-mary
, cardano-ledger-shelley
, cardano-node
, cardano-prelude
, cardano-slotting
, cardano-smash-server
, cardano-strict-containers
, containers
, contra-tracer
, data-default-class
, directory
, esqueleto
, extra
, filepath
, microlens
, silently
, stm
, strict-stm
, tasty
, tasty-quickcheck
, text
, transformers
, transformers-except
, tree-diff
, tasty-hunit
, monad-logger
, ouroboros-consensus
, ouroboros-consensus-cardano
, ouroboros-network-api
, persistent
, persistent-postgresql
, postgresql-simple
, QuickCheck
, quickcheck-state-machine:no-vendored-treediff