-
Notifications
You must be signed in to change notification settings - Fork 155
/
cardano-ledger-conway.cabal
278 lines (259 loc) · 7.37 KB
/
cardano-ledger-conway.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
cabal-version: 3.0
name: cardano-ledger-conway
version: 1.18.0.0
license: Apache-2.0
maintainer: [email protected]
author: IOHK
bug-reports: https://github.com/intersectmbo/cardano-ledger/issues
synopsis: Cardano ledger with an updated on-chain governance system.
description:
This package builds upon the Babbage ledger with an updated on-chain governance system.
category: Network
build-type: Simple
data-files:
cddl-files/conway.cddl
golden/*.cbor
test/data/*.json
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/intersectmbo/cardano-ledger
subdir: eras/conway/impl
flag asserts
description: Enable assertions
default: False
library
exposed-modules:
Cardano.Ledger.Conway
Cardano.Ledger.Conway.Core
Cardano.Ledger.Conway.Genesis
Cardano.Ledger.Conway.Governance
Cardano.Ledger.Conway.Governance.DRepPulser
Cardano.Ledger.Conway.PParams
Cardano.Ledger.Conway.Plutus.Context
Cardano.Ledger.Conway.Rules
Cardano.Ledger.Conway.Scripts
Cardano.Ledger.Conway.Transition
Cardano.Ledger.Conway.Translation
Cardano.Ledger.Conway.Tx
Cardano.Ledger.Conway.TxBody
Cardano.Ledger.Conway.TxBody.Internal
Cardano.Ledger.Conway.TxCert
Cardano.Ledger.Conway.TxInfo
Cardano.Ledger.Conway.TxWits
Cardano.Ledger.Conway.UTxO
hs-source-dirs: src
other-modules:
Cardano.Ledger.Conway.Era
Cardano.Ledger.Conway.Governance.Internal
Cardano.Ledger.Conway.Governance.Procedures
Cardano.Ledger.Conway.Governance.Proposals
Cardano.Ledger.Conway.Rules.Bbody
Cardano.Ledger.Conway.Rules.Cert
Cardano.Ledger.Conway.Rules.Certs
Cardano.Ledger.Conway.Rules.Deleg
Cardano.Ledger.Conway.Rules.Enact
Cardano.Ledger.Conway.Rules.Epoch
Cardano.Ledger.Conway.Rules.Gov
Cardano.Ledger.Conway.Rules.GovCert
Cardano.Ledger.Conway.Rules.HardFork
Cardano.Ledger.Conway.Rules.Ledger
Cardano.Ledger.Conway.Rules.Ledgers
Cardano.Ledger.Conway.Rules.Mempool
Cardano.Ledger.Conway.Rules.NewEpoch
Cardano.Ledger.Conway.Rules.Pool
Cardano.Ledger.Conway.Rules.Ratify
Cardano.Ledger.Conway.Rules.Tickf
Cardano.Ledger.Conway.Rules.Utxo
Cardano.Ledger.Conway.Rules.Utxos
Cardano.Ledger.Conway.Rules.Utxow
Cardano.Ledger.Conway.TxAuxData
Cardano.Ledger.Conway.TxOut
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages
build-depends:
aeson >=2.2,
base >=4.14 && <5,
cardano-crypto-class,
cardano-data >=1.2.3,
cardano-ledger-allegra ^>=1.6.1,
cardano-ledger-alonzo ^>=1.12,
cardano-ledger-babbage ^>=1.10.1,
cardano-ledger-binary ^>=1.5,
cardano-ledger-core ^>=1.16,
cardano-ledger-mary ^>=1.7,
cardano-ledger-shelley ^>=1.15,
cardano-slotting,
cardano-strict-containers,
containers,
data-default,
deepseq,
microlens,
nothunks,
plutus-ledger-api >=1.37,
set-algebra,
small-steps >=1.1,
text,
transformers,
validation-selective,
if flag(asserts)
ghc-options: -fno-ignore-asserts
library testlib
exposed-modules:
Test.Cardano.Ledger.Conway.Arbitrary
Test.Cardano.Ledger.Conway.Binary.Cddl
Test.Cardano.Ledger.Conway.Binary.Regression
Test.Cardano.Ledger.Conway.Binary.RoundTrip
Test.Cardano.Ledger.Conway.CDDL
Test.Cardano.Ledger.Conway.Genesis
Test.Cardano.Ledger.Conway.Imp
Test.Cardano.Ledger.Conway.Imp.BbodySpec
Test.Cardano.Ledger.Conway.Imp.CertsSpec
Test.Cardano.Ledger.Conway.Imp.DelegSpec
Test.Cardano.Ledger.Conway.Imp.EnactSpec
Test.Cardano.Ledger.Conway.Imp.EpochSpec
Test.Cardano.Ledger.Conway.Imp.GovCertSpec
Test.Cardano.Ledger.Conway.Imp.GovSpec
Test.Cardano.Ledger.Conway.Imp.LedgerSpec
Test.Cardano.Ledger.Conway.Imp.RatifySpec
Test.Cardano.Ledger.Conway.Imp.UtxoSpec
Test.Cardano.Ledger.Conway.Imp.UtxosSpec
Test.Cardano.Ledger.Conway.ImpTest
Test.Cardano.Ledger.Conway.Proposals
Test.Cardano.Ledger.Conway.Translation.TranslatableGen
Test.Cardano.Ledger.Conway.TreeDiff
visibility: public
hs-source-dirs: testlib
other-modules: Paths_cardano_ledger_conway
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages
build-depends:
FailT,
base,
bytestring,
cardano-crypto-class,
cardano-data:{cardano-data, testlib},
cardano-ledger-allegra,
cardano-ledger-alonzo:{cardano-ledger-alonzo, testlib},
cardano-ledger-babbage:{cardano-ledger-babbage, testlib},
cardano-ledger-binary:{cardano-ledger-binary, testlib},
cardano-ledger-conway,
cardano-ledger-core:{cardano-ledger-core, testlib},
cardano-ledger-shelley:{cardano-ledger-shelley, testlib},
cardano-strict-containers,
containers,
cuddle >=0.3.1.0,
cuddle >=0.3.2,
data-default,
deepseq,
generic-random,
here,
microlens,
microlens-mtl,
mtl,
plutus-ledger-api,
prettyprinter,
small-steps >=1.1,
executable huddle-cddl
main-is: Main.hs
hs-source-dirs: huddle-cddl
other-modules: Paths_cardano_ledger_conway
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wpartial-fields
-Wunused-packages
-threaded
-rtsopts
-with-rtsopts=-N
build-depends:
base,
cardano-ledger-binary:testlib >=1.5,
testlib,
executable gen-golden
main-is: GenerateGoldenFileMain.hs
hs-source-dirs: test
other-modules: Paths_cardano_ledger_conway
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages
build-depends:
base,
cardano-ledger-alonzo:testlib,
cardano-ledger-conway,
testlib,
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Paths_cardano_ledger_conway
Test.Cardano.Ledger.Conway.Binary.CddlSpec
Test.Cardano.Ledger.Conway.BinarySpec
Test.Cardano.Ledger.Conway.CommitteeRatifySpec
Test.Cardano.Ledger.Conway.DRepRatifySpec
Test.Cardano.Ledger.Conway.GenesisSpec
Test.Cardano.Ledger.Conway.GoldenTranslation
Test.Cardano.Ledger.Conway.GovActionReorderSpec
Test.Cardano.Ledger.Conway.Plutus.PlutusSpec
Test.Cardano.Ledger.Conway.SPORatifySpec
Test.Cardano.Ledger.Conway.Spec
Test.Cardano.Ledger.Conway.TxInfoSpec
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wpartial-fields
-Wunused-packages
-threaded
-rtsopts
-with-rtsopts=-N
build-depends:
HUnit,
aeson,
base,
cardano-data,
cardano-ledger-allegra,
cardano-ledger-alonzo,
cardano-ledger-alonzo:testlib,
cardano-ledger-babbage,
cardano-ledger-binary,
cardano-ledger-binary:testlib,
cardano-ledger-conway,
cardano-ledger-core,
cardano-ledger-core:testlib,
cardano-ledger-shelley,
cardano-slotting:testlib,
cardano-strict-containers,
containers,
data-default,
microlens,
plutus-ledger-api,
testlib,