-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathcardano-ledger-alonzo.cabal
236 lines (218 loc) · 5.81 KB
/
cardano-ledger-alonzo.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
cabal-version: 3.0
name: cardano-ledger-alonzo
version: 1.13.0.0
license: Apache-2.0
maintainer: operations@iohk.io
author: IOHK
bug-reports: https://github.com/intersectmbo/cardano-ledger/issues
synopsis: Cardano ledger introducing Plutus Core
description:
This package builds upon the Mary ledger with support for extended UTxO
via Plutus Core.
category: Network
build-type: Simple
data-files:
cddl-files/alonzo.cddl
golden/*.cbor
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/intersectmbo/cardano-ledger
subdir: eras/alonzo/impl
library
exposed-modules:
Cardano.Ledger.Alonzo
Cardano.Ledger.Alonzo.Core
Cardano.Ledger.Alonzo.Genesis
Cardano.Ledger.Alonzo.PParams
Cardano.Ledger.Alonzo.Plutus.Context
Cardano.Ledger.Alonzo.Plutus.Evaluate
Cardano.Ledger.Alonzo.Plutus.TxInfo
Cardano.Ledger.Alonzo.Rules
Cardano.Ledger.Alonzo.Scripts
Cardano.Ledger.Alonzo.Transition
Cardano.Ledger.Alonzo.Translation
Cardano.Ledger.Alonzo.Tx
Cardano.Ledger.Alonzo.TxAuxData
Cardano.Ledger.Alonzo.TxBody
Cardano.Ledger.Alonzo.TxBody.Internal
Cardano.Ledger.Alonzo.TxOut
Cardano.Ledger.Alonzo.TxSeq
Cardano.Ledger.Alonzo.TxSeq.Internal
Cardano.Ledger.Alonzo.TxWits
Cardano.Ledger.Alonzo.UTxO
hs-source-dirs: src
other-modules:
Cardano.Ledger.Alonzo.Era
Cardano.Ledger.Alonzo.Rules.Bbody
Cardano.Ledger.Alonzo.Rules.Deleg
Cardano.Ledger.Alonzo.Rules.Delegs
Cardano.Ledger.Alonzo.Rules.Delpl
Cardano.Ledger.Alonzo.Rules.Ledger
Cardano.Ledger.Alonzo.Rules.Ledgers
Cardano.Ledger.Alonzo.Rules.Pool
Cardano.Ledger.Alonzo.Rules.Ppup
Cardano.Ledger.Alonzo.Rules.Utxo
Cardano.Ledger.Alonzo.Rules.Utxos
Cardano.Ledger.Alonzo.Rules.Utxow
Cardano.Ledger.Alonzo.TxCert
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,
base64-bytestring,
bytestring,
cardano-crypto-class,
cardano-data ^>=1.2.1,
cardano-ledger-allegra ^>=1.7,
cardano-ledger-binary ^>=1.6,
cardano-ledger-core ^>=1.17,
cardano-ledger-mary ^>=1.8,
cardano-ledger-shelley ^>=1.16,
cardano-slotting,
cardano-strict-containers,
containers,
data-default,
deepseq,
mempack,
microlens,
mtl,
nothunks,
plutus-ledger-api >=1.37,
set-algebra >=1.0,
small-steps >=1.1,
text,
transformers,
validation-selective,
if !impl(ghc >=9.2)
ghc-options: -Wno-name-shadowing
library testlib
exposed-modules:
Test.Cardano.Ledger.Alonzo.Arbitrary
Test.Cardano.Ledger.Alonzo.Binary.Cddl
Test.Cardano.Ledger.Alonzo.Binary.CostModelsSpec
Test.Cardano.Ledger.Alonzo.Binary.RoundTrip
Test.Cardano.Ledger.Alonzo.Binary.TxWitsSpec
Test.Cardano.Ledger.Alonzo.CDDL
Test.Cardano.Ledger.Alonzo.Imp
Test.Cardano.Ledger.Alonzo.Imp.UtxoSpec
Test.Cardano.Ledger.Alonzo.Imp.UtxosSpec
Test.Cardano.Ledger.Alonzo.Imp.UtxowSpec
Test.Cardano.Ledger.Alonzo.Imp.UtxowSpec.Invalid
Test.Cardano.Ledger.Alonzo.Imp.UtxowSpec.Valid
Test.Cardano.Ledger.Alonzo.ImpTest
Test.Cardano.Ledger.Alonzo.Translation.Golden
Test.Cardano.Ledger.Alonzo.Translation.TranslatableGen
Test.Cardano.Ledger.Alonzo.Translation.TranslationInstance
Test.Cardano.Ledger.Alonzo.TreeDiff
visibility: public
hs-source-dirs: testlib
other-modules: Paths_cardano_ledger_alonzo
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages
build-depends:
HUnit,
QuickCheck,
base,
bytestring,
cardano-data,
cardano-ledger-allegra,
cardano-ledger-alonzo,
cardano-ledger-binary,
cardano-ledger-core:{cardano-ledger-core, testlib},
cardano-ledger-mary:testlib,
cardano-ledger-shelley:{cardano-ledger-shelley, testlib},
cardano-slotting,
cardano-strict-containers,
containers,
cuddle,
generic-random,
heredoc,
microlens,
microlens-mtl,
plutus-ledger-api,
serialise,
text,
time,
tree-diff,
executable huddle-cddl
main-is: Main.hs
hs-source-dirs: huddle-cddl
other-modules: Paths_cardano_ledger_alonzo
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_alonzo
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,
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Paths_cardano_ledger_alonzo
Test.Cardano.Ledger.Alonzo.Binary.CddlSpec
Test.Cardano.Ledger.Alonzo.BinarySpec
Test.Cardano.Ledger.Alonzo.GoldenTranslation
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,
base,
cardano-ledger-allegra,
cardano-ledger-alonzo,
cardano-ledger-binary:testlib,
cardano-ledger-core:{cardano-ledger-core, testlib},
testlib,