File tree 6 files changed +13
-8
lines changed
6 files changed +13
-8
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,
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 @@ -211,8 +211,8 @@ library
211
211
, strict-sop-core
212
212
, strict-stm
213
213
, time
214
- , trace-dispatcher ^>= 2.8.1
215
- , trace-forward ^>= 2.2.10
214
+ , trace-dispatcher ^>= 2.9
215
+ , trace-forward ^>= 2.2.11
216
216
, trace-resources ^>= 0.2.3
217
217
, tracer-transformers
218
218
, 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