File tree Expand file tree Collapse file tree 6 files changed +13
-8
lines changed
Expand file tree Collapse file tree 6 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 11cabal-version : 3.0
22name : plutus-scripts-bench
3- version : 1.0.4.2
3+ version : 1.0.4.3
44synopsis : Plutus scripts used for benchmarking
55description : Plutus scripts used for benchmarking.
66category : Cardano,
Original file line number Diff line number Diff line change 11cabal-version : 3.0
22
33name : tx-generator
4- version : 2.14.2
4+ version : 2.15
55synopsis : A transaction workload generator for Cardano clusters
66description : A transaction workload generator for Cardano clusters.
77category : Cardano,
@@ -17,6 +17,11 @@ extra-source-files: README.md
1717data-files : data/*.json
1818 scripts-fallback/*.plutus
1919
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+
2025common project-config
2126 if os(windows)
2227 buildable : False
@@ -25,7 +30,7 @@ common with-library
2530 -- This is the inverse to the "buildable" GHC version constraint in plutus-scripts-bench.
2631 -- It makes sure, we only depend on that package if it is buildable.
2732 -- 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 ))
2934 build-depends : plutus-scripts-bench ^>= 1.0.4
3035 cpp-options : -DWITH_LIBRARY
3136
Original file line number Diff line number Diff line change @@ -211,8 +211,8 @@ library
211211 , strict-sop-core
212212 , strict-stm
213213 , time
214- , trace-dispatcher ^>= 2.8.1
215- , trace-forward ^>= 2.2.10
214+ , trace-dispatcher ^>= 2.9
215+ , trace-forward ^>= 2.2.11
216216 , trace-resources ^>= 0.2.3
217217 , tracer-transformers
218218 , transformers
Original file line number Diff line number Diff line change 11cabal-version : 3.0
22
33name : cardano-tracer
4- version : 0.3.1
4+ version : 0.3.2
55synopsis : A service for logging and monitoring over Cardano nodes
66description : A service for logging and monitoring over Cardano nodes.
77category : Cardano,
Original file line number Diff line number Diff line change 11cabal-version : 3.0
22
33name : trace-dispatcher
4- version : 2.8.1
4+ version : 2.9
55synopsis : Tracers for Cardano
66description : Package for development of simple and efficient tracers
77 based on the arrow based contra-tracer package
Original file line number Diff line number Diff line change 11cabal-version : 3.0
22
33name : trace-forward
4- version : 2.2.10
4+ version : 2.2.11
55synopsis : The forwarding protocols library for cardano node.
66description : The library providing typed protocols for forwarding different
77 information from the cardano node to an external application.
You can’t perform that action at this time.
0 commit comments