forked from IntersectMBO/cardano-ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cardano-ledger-conway.cabal
184 lines (169 loc) · 5.77 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
cabal-version: 3.0
name: cardano-ledger-conway
version: 1.12.0.0
license: Apache-2.0
maintainer: operations@iohk.io
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:
test/data/*.json
cddl-files/conway.cddl
cddl-files/crypto.cddl
cddl-files/extra.cddl
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.Genesis
Cardano.Ledger.Conway.Governance
Cardano.Ledger.Conway.PParams
Cardano.Ledger.Conway.Tx
Cardano.Ledger.Conway.TxBody
Cardano.Ledger.Conway.TxInfo
Cardano.Ledger.Conway.TxWits
Cardano.Ledger.Conway.Transition
Cardano.Ledger.Conway.Translation
Cardano.Ledger.Conway.Scripts
Cardano.Ledger.Conway
Cardano.Ledger.Conway.Rules
Cardano.Ledger.Conway.Core
Cardano.Ledger.Conway.TxCert
Cardano.Ledger.Conway.UTxO
Cardano.Ledger.Conway.Plutus.Context
hs-source-dirs: src
other-modules:
Cardano.Ledger.Conway.Era
Cardano.Ledger.Conway.Governance.Procedures
Cardano.Ledger.Conway.Governance.Proposals
Cardano.Ledger.Conway.Rules.Cert
Cardano.Ledger.Conway.Rules.Deleg
Cardano.Ledger.Conway.Rules.Pool
Cardano.Ledger.Conway.Rules.GovCert
Cardano.Ledger.Conway.Rules.Certs
Cardano.Ledger.Conway.Rules.Enact
Cardano.Ledger.Conway.Rules.Epoch
Cardano.Ledger.Conway.Rules.Ledger
Cardano.Ledger.Conway.Rules.NewEpoch
Cardano.Ledger.Conway.Rules.Gov
Cardano.Ledger.Conway.Rules.Ratify
Cardano.Ledger.Conway.Rules.Tickf
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:
base >=4.14 && <5,
aeson >=2.2,
data-default-class,
cardano-crypto-class,
cardano-data >=1.2,
cardano-ledger-binary ^>=1.3,
cardano-ledger-allegra ^>=1.3,
cardano-ledger-alonzo ^>=1.6,
cardano-ledger-babbage ^>=1.6,
cardano-ledger-core ^>=1.10,
cardano-ledger-mary ^>=1.5,
cardano-ledger-shelley ^>=1.9,
cardano-slotting,
cardano-strict-containers,
containers,
deepseq,
microlens,
nothunks,
plutus-ledger-api ^>=1.21,
set-algebra,
small-steps,
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.RoundTrip
Test.Cardano.Ledger.Conway.ImpTest
Test.Cardano.Ledger.Conway.Imp
Test.Cardano.Ledger.Conway.Imp.EpochSpec
Test.Cardano.Ledger.Conway.Imp.EnactSpec
Test.Cardano.Ledger.Conway.Imp.GovSpec
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:
base,
bytestring,
cardano-data:{cardano-data, testlib},
containers,
microlens,
microlens-mtl,
cardano-crypto-class,
cardano-ledger-allegra:{cardano-ledger-allegra, testlib},
cardano-ledger-alonzo:testlib,
cardano-ledger-binary,
cardano-ledger-babbage:testlib,
cardano-ledger-conway,
cardano-ledger-core:{cardano-ledger-core, testlib},
cardano-ledger-shelley,
cardano-strict-containers,
data-default-class,
small-steps
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Test.Cardano.Ledger.Conway.BinarySpec
Test.Cardano.Ledger.Conway.Binary.CddlSpec
Test.Cardano.Ledger.Conway.DRepRatifySpec
Test.Cardano.Ledger.Conway.CommitteeRatifySpec
Test.Cardano.Ledger.Conway.GenesisSpec
Test.Cardano.Ledger.Conway.GovActionReorderSpec
Test.Cardano.Ledger.Conway.Plutus.PlutusSpec
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:
aeson,
base,
cardano-data,
cardano-ledger-core:testlib,
cardano-ledger-allegra,
cardano-ledger-alonzo:testlib,
cardano-ledger-alonzo,
cardano-ledger-babbage,
cardano-ledger-conway,
cardano-ledger-shelley:testlib,
cardano-ledger-core,
cardano-ledger-binary:testlib,
cardano-strict-containers,
containers,
data-default-class,
microlens,
testlib