-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcape.cabal
More file actions
292 lines (259 loc) · 6.71 KB
/
cape.cabal
File metadata and controls
292 lines (259 loc) · 6.71 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
cabal-version: 3.4
name: cape
version: 1.0.0
synopsis: UPLC-CAPE benchmark framework and measurement tools
description:
The UPLC-CAPE (Untyped Plutus Core - Comparative Artifact Performance Evaluation)
framework provides tools for benchmarking and measuring UPLC smart contract
performance across different compilers. This package includes measurement tools,
benchmark implementations using Plinth (PlutusTx), and test suites.
author: UPLC-CAPE Project
maintainer: UPLC-CAPE Project
category: Blockchain
license: Apache-2.0
flag preview
description:
Enable preview modules (requires plutus-tx-plugin with BuiltinCasing support)
default: False
manual: True
common common-deps
build-depends:
, aeson
, aeson-pretty
, base >=4.16
, bytestring
, flat
, plutus-core ^>=1.45
, plutus-ledger-api ^>=1.45
, plutus-tx ^>=1.45
, plutus-tx-plugin ^>=1.45
, relude ^>=1.2.2
, serialise
, text
, time
-- Shared language settings (warnings, mixins, default extensions). Carries
-- no build-depends so a stanza can opt in to the project's house style
-- without pulling the heavy plutus-tx-plugin dep that lives in common-deps.
common common-language-base
ghc-options:
-Wall -Wcompat -Wincomplete-uni-patterns -Wredundant-constraints
-Wmissing-export-lists -Wmissing-deriving-strategies
-Wpartial-fields
default-language: Haskell2010
mixins:
base hiding (Prelude),
relude (Relude as Prelude)
default-extensions:
BangPatterns
BlockArguments
DataKinds
DeriveAnyClass
DeriveGeneric
DerivingStrategies
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
ImportQualifiedPost
LambdaCase
MultiParamTypeClasses
MultiWayIf
NamedFieldPuns
NoImplicitPrelude
NumericUnderscores
OverloadedStrings
PatternSynonyms
QuasiQuotes
ScopedTypeVariables
Strict
TemplateHaskell
TypeApplications
TypeFamilies
UndecidableInstances
ViewPatterns
common common-language
import: common-language-base
import: common-deps
-- Core measurement and benchmark library
library
import: common-language
exposed-modules:
Cape.Compile
Cape.Data.Decode
Cape.Data.PlutusJson
Cape.Data.UplcText
Cape.Error
Cape.Fixture
Cape.PrettyResult
Cape.Protocol.Parameters
Cape.ScriptContextBuilder
Cape.Tests
Cape.Verify
Cape.WritePlc
Ecd
Factorial
Fibonacci
FibonacciIterative
HTLC
HTLC.Fixture
LinearVesting
LinearVesting.Fixture
TwoPartyEscrow
TwoPartyEscrow.Fixture
build-depends:
, aeson
, aeson-pretty
, base16-bytestring
, bytestring
, containers
, directory
, filepath
, flat
, megaparsec
, mtl
, plutus-core
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, process
, relude
, serialise
, some
, text
, time
hs-source-dirs: lib
-- UPLC measurement tool
executable measure
import: common-language
main-is: Main.hs
other-modules: Cape.Cli
build-depends:
, ansi-terminal
, cape
, optparse-applicative
hs-source-dirs: measure-app
-- Preview measurement tool (built against newer plutus-core)
-- Build with: cabal --project-file=cabal.project.preview build measure-preview
executable measure-preview
import: common-language
main-is: Main.hs
other-modules: Cape.Cli
if !flag(preview)
buildable: False
build-depends:
, ansi-terminal
, cape
, optparse-applicative
hs-source-dirs: measure-app
-- Preview modules: re-compiled with BuiltinCasing (requires plutus-tx-plugin >= 1.46)
-- Build with: cabal --project-file=cabal.project.preview -f preview build plinth-submissions
library cape-preview
import: common-language
visibility: private
if !flag(preview)
buildable: False
exposed-modules:
Preview.Ecd
Preview.Factorial
Preview.Fibonacci
Preview.FibonacciIterative
Preview.HTLC
Preview.LinearVesting
Preview.TwoPartyEscrow
other-modules:
Ecd
Factorial
Fibonacci
FibonacciIterative
HTLC
LinearVesting
TwoPartyEscrow
TwoPartyEscrow.Fixture
build-depends:
, cape
, plutus-core
, plutus-tx
, plutus-tx-plugin
hs-source-dirs: lib
-- UPLC-CAPE Plinth submissions generator (production, Plinth 1.45).
-- Writes only 1.45 submission paths. Run with the default cabal project:
-- cabal run plinth-submissions
executable plinth-submissions
import: common-language
main-is: Main.hs
build-depends:
, base
, cape
, mtl
, plutus-core
, plutus-tx
, plutus-tx-plugin
hs-source-dirs: plinth-submissions-app
-- UPLC-CAPE Plinth submissions generator (preview, Plinth 1.61 + BuiltinCasing).
-- Writes only 1.61 submission paths. Run with:
-- cabal run --project-file=cabal.project.preview -f preview plinth-submissions-preview
executable plinth-submissions-preview
import: common-language
main-is: Main.hs
if !flag(preview)
buildable: False
build-depends:
, base
, cape
, cape:cape-preview
, mtl
, plutus-core
, plutus-tx
, plutus-tx-plugin
hs-source-dirs: plinth-submissions-preview-app
-- UPLC textual pretty-printer used by treefmt as the *.uplc formatter.
-- Imports common-language-base (warnings, mixins, extensions) but not
-- common-deps, so the build path stays free of plutus-tx-plugin / Plinth
-- and the dev shell can ship the binary cheaply.
executable pretty-uplc
import: common-language-base
main-is: Main.hs
hs-source-dirs: pretty-uplc-app
build-depends:
, base >=4.16
, mtl
, optparse-applicative
, plutus-core ^>=1.45
, relude ^>=1.2.2
, text
-- Test suite
test-suite cape-tests
import: common-language
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Cape.Data.PlutusJsonSpec
Cape.Data.UplcTextSpec
Cape.Protocol.ParametersSpec
Cape.ScriptContextBuilderSpec
Cape.TestsSpec
EcdSpec
FactorialSpec
FibonacciSpec
HTLCSpec
HTLCSpec.Fixture
LinearVestingSpec
LinearVestingSpec.Fixture
TwoPartyEscrowSpec
TwoPartyEscrowSpec.Fixture
ValidatorHelpers
build-depends:
, aeson
, bytestring
, cape
, containers
, hspec
, megaparsec
, mtl
, plutus-ledger-api
, plutus-tx
, plutus-tx:plutus-tx-testlib
, string-interpolate
, vector
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-tool-depends: hspec-discover:hspec-discover