File tree 7 files changed +17
-11
lines changed
7 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
name : plutus-scripts-bench
3
- version : 1.0.4.2
3
+ version : 1.0.4.3
4
4
synopsis : Plutus scripts used for benchmarking
5
5
description : Plutus scripts used for benchmarking.
6
6
category : Cardano,
@@ -83,9 +83,9 @@ library
83
83
--------------------------
84
84
build-depends :
85
85
, cardano-api ^>= 10.10
86
- , plutus-ledger-api ^>= 1.37
87
- , plutus-tx ^>= 1.37
88
- , plutus-tx-plugin ^>= 1.37
86
+ , plutus-ledger-api ^>= 1.40
87
+ , plutus-tx ^>= 1.40
88
+ , plutus-tx-plugin ^>= 1.40
89
89
90
90
------------------------
91
91
-- Non-IOG dependencies
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
3
3
name : tx-generator
4
- version : 2.14.2
4
+ version : 2.15
5
5
synopsis : A transaction workload generator for Cardano clusters
6
6
description : A transaction workload generator for Cardano clusters.
7
7
category : Cardano,
@@ -17,6 +17,11 @@ extra-source-files: README.md
17
17
data-files : data/*.json
18
18
scripts-fallback/*.plutus
19
19
20
+ flag withplutuslib
21
+ description : Enable import and re-compilation of Plutus scripts from plutus-scripts-bench. Default : false; use for dev/test of new benchmarks only.
22
+ default : False
23
+ manual : True
24
+
20
25
common project-config
21
26
if os(windows)
22
27
buildable : False
@@ -25,7 +30,7 @@ common with-library
25
30
-- This is the inverse to the "buildable" GHC version constraint in plutus-scripts-bench.
26
31
-- It makes sure, we only depend on that package if it is buildable.
27
32
-- The tx-generator will fall back to pre-serialized Plutus scripts if this package is not present.
28
- if !(impl(ghc < 9.6 ) || impl(ghc >= 9.7 ))
33
+ if flag(withplutuslib) && !(impl(ghc < 9.6 ) || impl(ghc >= 9.7 ))
29
34
build-depends : plutus-scripts-bench ^>= 1.0.4
30
35
cpp-options : -DWITH_LIBRARY
31
36
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ source-repository-package
84
84
plutus-core
85
85
plutus-ledger-api
86
86
plutus-tx
87
+ plutus-tx-plugin
87
88
88
89
source-repository-package
89
90
type : git
Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ library
209
209
, strict-sop-core
210
210
, strict-stm
211
211
, time
212
- , trace-dispatcher ^>= 2.8.1
213
- , trace-forward ^>= 2.2.10
212
+ , trace-dispatcher ^>= 2.9
213
+ , trace-forward ^>= 2.2.11
214
214
, trace-resources ^>= 0.2.3
215
215
, tracer-transformers
216
216
, transformers
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
3
3
name : cardano-tracer
4
- version : 0.3.1
4
+ version : 0.3.2
5
5
synopsis : A service for logging and monitoring over Cardano nodes
6
6
description : A service for logging and monitoring over Cardano nodes.
7
7
category : Cardano,
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
3
3
name : trace-dispatcher
4
- version : 2.8.1
4
+ version : 2.9
5
5
synopsis : Tracers for Cardano
6
6
description : Package for development of simple and efficient tracers
7
7
based on the arrow based contra-tracer package
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
3
3
name : trace-forward
4
- version : 2.2.10
4
+ version : 2.2.11
5
5
synopsis : The forwarding protocols library for cardano node.
6
6
description : The library providing typed protocols for forwarding different
7
7
information from the cardano node to an external application.
You can’t perform that action at this time.
0 commit comments