-
Notifications
You must be signed in to change notification settings - Fork 156
/
cardano-ledger-babbage.cabal
173 lines (157 loc) · 5.28 KB
/
cardano-ledger-babbage.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
cabal-version: 3.0
name: cardano-ledger-babbage
version: 1.10.1.0
license: Apache-2.0
maintainer: [email protected]
author: IOHK
bug-reports: https://github.com/intersectmbo/cardano-ledger/issues
synopsis:
Cardano ledger introducing refrence scripts and inline datums
description:
This package builds upon the Alonzo ledger with support for reference scripts,
reference inputs and inline datums.
category: Network
build-type: Simple
data-files:
cddl-files/babbage.cddl
cddl-files/crypto.cddl
cddl-files/extras.cddl
golden/*.cbor
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/intersectmbo/cardano-ledger
subdir: eras/babbage/impl
library
exposed-modules:
Cardano.Ledger.Babbage
Cardano.Ledger.Babbage.Collateral
Cardano.Ledger.Babbage.Core
Cardano.Ledger.Babbage.PParams
Cardano.Ledger.Babbage.Rules
Cardano.Ledger.Babbage.Scripts
Cardano.Ledger.Babbage.Tx
Cardano.Ledger.Babbage.TxBody
Cardano.Ledger.Babbage.TxBody.Internal
Cardano.Ledger.Babbage.TxOut
Cardano.Ledger.Babbage.TxInfo
Cardano.Ledger.Babbage.TxWits
Cardano.Ledger.Babbage.Transition
Cardano.Ledger.Babbage.Translation
Cardano.Ledger.Babbage.UTxO
hs-source-dirs: src
other-modules:
Cardano.Ledger.Babbage.Era
Cardano.Ledger.Babbage.TxAuxData
Cardano.Ledger.Babbage.TxCert
Cardano.Ledger.Babbage.Rules.Bbody
Cardano.Ledger.Babbage.Rules.Deleg
Cardano.Ledger.Babbage.Rules.Delegs
Cardano.Ledger.Babbage.Rules.Delpl
Cardano.Ledger.Babbage.Rules.Pool
Cardano.Ledger.Babbage.Rules.Ppup
Cardano.Ledger.Babbage.Rules.Ledger
Cardano.Ledger.Babbage.Rules.Ledgers
Cardano.Ledger.Babbage.Rules.Utxo
Cardano.Ledger.Babbage.Rules.Utxos
Cardano.Ledger.Babbage.Rules.Utxow
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-Wunused-packages
build-depends:
base >=4.14 && <5,
aeson >=2.2,
bytestring,
cardano-crypto-class,
cardano-data >=1.2,
cardano-ledger-allegra ^>=1.6.1,
cardano-ledger-alonzo >=1.12,
cardano-ledger-binary >=1.4,
cardano-ledger-core >=1.16 && <1.17,
cardano-ledger-mary ^>=1.7,
cardano-ledger-shelley ^>=1.15,
cardano-strict-containers,
containers,
deepseq,
microlens,
nothunks,
plutus-ledger-api >=1.33,
set-algebra,
small-steps >=1.1,
text,
transformers,
validation-selective
library testlib
exposed-modules:
Test.Cardano.Ledger.Babbage.Arbitrary
Test.Cardano.Ledger.Babbage.Binary.Cddl
Test.Cardano.Ledger.Babbage.Imp
Test.Cardano.Ledger.Babbage.Imp.UtxowSpec
Test.Cardano.Ledger.Babbage.ImpTest
Test.Cardano.Ledger.Babbage.TreeDiff
Test.Cardano.Ledger.Babbage.Translation.TranslatableGen
visibility: public
hs-source-dirs: testlib
other-modules: Paths_cardano_ledger_babbage
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-Wunused-packages
build-depends:
base,
bytestring,
cardano-ledger-alonzo:{cardano-ledger-alonzo, testlib},
cardano-ledger-shelley,
cardano-crypto-class,
cardano-ledger-babbage,
cardano-ledger-binary,
cardano-ledger-core:{cardano-ledger-core, testlib} >=1.13.2,
cardano-strict-containers,
containers,
generic-random,
microlens,
small-steps >=1.1,
QuickCheck
executable gen-golden
main-is: GenerateGoldenFileMain.hs
hs-source-dirs: test
other-modules: Paths_cardano_ledger_babbage
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-babbage,
testlib
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Test.Cardano.Ledger.Babbage.BinarySpec
Test.Cardano.Ledger.Babbage.Binary.CddlSpec
Test.Cardano.Ledger.Babbage.GoldenTranslation
Paths_cardano_ledger_babbage
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-alonzo,
cardano-ledger-allegra,
cardano-ledger-babbage,
cardano-ledger-core,
cardano-ledger-binary:testlib,
cardano-ledger-core:testlib,
cardano-ledger-alonzo:testlib,
data-default,
HUnit,
testlib