forked from IntersectMBO/cardano-ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cardano-ledger-alonzo.cabal
167 lines (153 loc) · 5.18 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
cabal-version: 3.0
name: cardano-ledger-alonzo
version: 1.9.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
cddl-files/crypto.cddl
cddl-files/extras.cddl
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.Data
Cardano.Ledger.Alonzo.Transition
Cardano.Ledger.Alonzo.Genesis
Cardano.Ledger.Alonzo.Language
Cardano.Ledger.Alonzo.Plutus.Context
Cardano.Ledger.Alonzo.Plutus.Evaluate
Cardano.Ledger.Alonzo.Plutus.TxInfo
Cardano.Ledger.Alonzo.PParams
Cardano.Ledger.Alonzo.Rules
Cardano.Ledger.Alonzo.Scripts
Cardano.Ledger.Alonzo.Scripts.Data
Cardano.Ledger.Alonzo.Translation
Cardano.Ledger.Alonzo.Tx
Cardano.Ledger.Alonzo.TxAuxData
Cardano.Ledger.Alonzo.TxBody
Cardano.Ledger.Alonzo.TxOut
Cardano.Ledger.Alonzo.TxSeq
Cardano.Ledger.Alonzo.TxWits
Cardano.Ledger.Alonzo.UTxO
hs-source-dirs: src
other-modules:
Cardano.Ledger.Alonzo.TxCert
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.Pool
Cardano.Ledger.Alonzo.Rules.Ppup
Cardano.Ledger.Alonzo.Rules.Ledger
Cardano.Ledger.Alonzo.Rules.Ledgers
Cardano.Ledger.Alonzo.Rules.Utxo
Cardano.Ledger.Alonzo.Rules.Utxos
Cardano.Ledger.Alonzo.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,
base64-bytestring,
bytestring,
cardano-data ^>=1.2.1,
cardano-ledger-allegra ^>=1.5,
cardano-crypto-class,
cardano-ledger-binary ^>=1.3,
cardano-ledger-core ^>=1.13,
cardano-ledger-mary ^>=1.6.0,
cardano-ledger-shelley ^>=1.12.1,
cardano-slotting,
cardano-strict-containers,
containers,
data-default-class,
deepseq,
mtl,
microlens,
nothunks,
plutus-ledger-api ^>=1.30,
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.Imp
Test.Cardano.Ledger.Alonzo.Imp.UtxosSpec
Test.Cardano.Ledger.Alonzo.Imp.UtxowSpec
Test.Cardano.Ledger.Alonzo.Imp.UtxowSpec.Valid
Test.Cardano.Ledger.Alonzo.Imp.UtxowSpec.Invalid
Test.Cardano.Ledger.Alonzo.ImpTest
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:
base,
bytestring,
containers,
cardano-crypto-class,
cardano-data,
cardano-ledger-alonzo,
cardano-ledger-allegra,
cardano-ledger-binary,
cardano-ledger-mary:testlib,
cardano-ledger-core:{cardano-ledger-core, testlib},
cardano-ledger-shelley:{cardano-ledger-shelley, testlib},
cardano-strict-containers,
plutus-ledger-api,
generic-random,
microlens,
microlens-mtl,
text,
tree-diff
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Test.Cardano.Ledger.Alonzo.BinarySpec
Test.Cardano.Ledger.Alonzo.Binary.CddlSpec
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-allegra,
cardano-ledger-alonzo,
cardano-ledger-binary:testlib,
cardano-ledger-core:{cardano-ledger-core, testlib},
testlib