-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathcardano-ledger-allegra.cabal
174 lines (160 loc) · 4.18 KB
/
cardano-ledger-allegra.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
cabal-version: 3.0
name: cardano-ledger-allegra
version: 1.7.0.0
license: Apache-2.0
maintainer: [email protected]
author: IOHK
bug-reports: https://github.com/intersectmbo/cardano-ledger/issues
synopsis: Allegra ledger era that introduces time lock support.
description:
This package builds upon Shelley era with support for timelocks.
category: Network
build-type: Simple
data-files: cddl-files/allegra.cddl
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/intersectmbo/cardano-ledger
subdir: eras/allegra/impl
library
exposed-modules:
Cardano.Ledger.Allegra
Cardano.Ledger.Allegra.Core
Cardano.Ledger.Allegra.Rules
Cardano.Ledger.Allegra.Scripts
Cardano.Ledger.Allegra.Transition
Cardano.Ledger.Allegra.Translation
Cardano.Ledger.Allegra.Tx
Cardano.Ledger.Allegra.TxAuxData
Cardano.Ledger.Allegra.TxBody
Cardano.Ledger.Allegra.TxBody.Internal
hs-source-dirs: src
other-modules:
Cardano.Ledger.Allegra.Era
Cardano.Ledger.Allegra.PParams
Cardano.Ledger.Allegra.Rules.Bbody
Cardano.Ledger.Allegra.Rules.Deleg
Cardano.Ledger.Allegra.Rules.Delegs
Cardano.Ledger.Allegra.Rules.Delpl
Cardano.Ledger.Allegra.Rules.Ledger
Cardano.Ledger.Allegra.Rules.Ledgers
Cardano.Ledger.Allegra.Rules.Pool
Cardano.Ledger.Allegra.Rules.Ppup
Cardano.Ledger.Allegra.Rules.Utxo
Cardano.Ledger.Allegra.Rules.Utxow
Cardano.Ledger.Allegra.TxCert
Cardano.Ledger.Allegra.TxOut
Cardano.Ledger.Allegra.TxSeq
Cardano.Ledger.Allegra.TxWits
Cardano.Ledger.Allegra.UTxO
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wpartial-fields
-Wunused-packages
build-depends:
aeson,
base >=4.14 && <5,
bytestring,
cardano-ledger-binary >=1.4,
cardano-ledger-core >=1.17 && <1.18,
cardano-ledger-shelley ^>=1.16,
cardano-slotting,
cardano-strict-containers,
cborg,
containers,
deepseq,
mempack,
microlens,
nothunks,
small-steps >=1.1,
transformers,
validation-selective,
library testlib
exposed-modules:
Test.Cardano.Ledger.Allegra.Arbitrary
Test.Cardano.Ledger.Allegra.Binary.Cddl
Test.Cardano.Ledger.Allegra.CDDL
Test.Cardano.Ledger.Allegra.Imp
Test.Cardano.Ledger.Allegra.Imp.UtxowSpec
Test.Cardano.Ledger.Allegra.ImpTest
Test.Cardano.Ledger.Allegra.TreeDiff
visibility: public
hs-source-dirs: testlib
other-modules: Paths_cardano_ledger_allegra
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wpartial-fields
-Wunused-packages
build-depends:
QuickCheck,
base,
bytestring,
cardano-ledger-allegra,
cardano-ledger-core:{cardano-ledger-core, testlib},
cardano-ledger-shelley:{cardano-ledger-shelley, testlib},
cardano-strict-containers,
containers,
cuddle,
generic-random,
heredoc,
microlens,
mtl,
small-steps,
text,
executable huddle-cddl
main-is: Main.hs
hs-source-dirs: huddle-cddl
other-modules: Paths_cardano_ledger_allegra
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.3.4.0,
testlib,
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Test.Cardano.Ledger.Allegra.Binary.CddlSpec
Test.Cardano.Ledger.Allegra.BinarySpec
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-binary:testlib,
cardano-ledger-core:{cardano-ledger-core, testlib},
cardano-ledger-shelley:testlib,
data-default,
testlib,