certora-cli-beta-mirror 7.31.0__py3-none-any.whl → 8.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. certora_cli/CertoraProver/certoraBuild.py +19 -18
  2. certora_cli/CertoraProver/certoraBuildCacheManager.py +2 -0
  3. certora_cli/CertoraProver/certoraBuildRust.py +31 -20
  4. certora_cli/{Shared/rustProverCommon.py → CertoraProver/certoraBuildSui.py} +24 -18
  5. certora_cli/CertoraProver/certoraCloudIO.py +37 -8
  6. certora_cli/CertoraProver/certoraCollectRunMetadata.py +20 -5
  7. certora_cli/CertoraProver/certoraConfigIO.py +15 -13
  8. certora_cli/CertoraProver/certoraContext.py +33 -8
  9. certora_cli/CertoraProver/certoraContextAttributes.py +113 -195
  10. certora_cli/CertoraProver/certoraContextValidator.py +69 -40
  11. certora_cli/CertoraProver/certoraVerifyGenerator.py +9 -4
  12. certora_cli/CertoraProver/splitRules.py +2 -0
  13. certora_cli/CertoraProver/storageExtension.py +0 -35
  14. certora_cli/Mutate/mutateApp.py +16 -10
  15. certora_cli/Mutate/mutateAttributes.py +11 -0
  16. certora_cli/Shared/certoraAttrUtil.py +11 -5
  17. certora_cli/Shared/certoraUtils.py +29 -28
  18. certora_cli/Shared/certoraValidateFuncs.py +24 -12
  19. certora_cli/Shared/proverCommon.py +4 -2
  20. certora_cli/certoraCVLFormatter.py +76 -0
  21. certora_cli/certoraConcord.py +39 -0
  22. certora_cli/certoraRun.py +55 -95
  23. certora_cli/certoraSolanaProver.py +1 -1
  24. certora_cli/certoraSorobanProver.py +1 -1
  25. {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/METADATA +3 -3
  26. {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/RECORD +33 -30
  27. {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/entry_points.txt +1 -0
  28. certora_jars/ASTExtraction.jar +0 -0
  29. certora_jars/CERTORA-CLI-VERSION-METADATA.json +1 -1
  30. certora_jars/Typechecker.jar +0 -0
  31. {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/LICENSE +0 -0
  32. {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/WHEEL +0 -0
  33. {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/top_level.txt +0 -0
certora_cli/certoraRun.py CHANGED
@@ -24,10 +24,9 @@ scripts_dir_path = Path(__file__).parent.resolve() # containing directory
24
24
  sys.path.insert(0, str(scripts_dir_path))
25
25
  from Shared import certoraUtils as Util
26
26
 
27
- from CertoraProver.certoraCloudIO import CloudVerification, validate_version_and_branch
27
+ from CertoraProver.certoraCloudIO import CloudVerification
28
28
 
29
29
  from CertoraProver.certoraBuild import build
30
- from CertoraProver.certoraBuildRust import set_rust_build_directory
31
30
  import CertoraProver.certoraContext as Ctx
32
31
 
33
32
  from CertoraProver import certoraContextValidator as Cv
@@ -52,7 +51,7 @@ BUILD_SCRIPT_PATH = Path("CertoraProver/certoraBuild.py")
52
51
  # Also serves as the default logger for errors originating from unexpected places.
53
52
  run_logger = logging.getLogger("run")
54
53
 
55
- def run_certora(args: List[str], attrs_class: Optional[Type[AttrUtil.Attributes]] = None,
54
+ def run_certora(args: List[str], attrs_class: Type[AttrUtil.Attributes] = Attrs.EvmProverAttributes,
56
55
  prover_cmd: Optional[str] = None) -> Optional[CertoraRunResult]:
57
56
  """
58
57
  The main function that is responsible for the general flow of the script.
@@ -61,9 +60,6 @@ def run_certora(args: List[str], attrs_class: Optional[Type[AttrUtil.Attributes]
61
60
  2. Run the necessary steps (type checking/ build/ cloud verification/ local verification)
62
61
 
63
62
  """
64
- if not attrs_class:
65
- attrs_class = Attrs.detect_application_class(args)
66
-
67
63
  context, logging_manager = build_context(args, attrs_class)
68
64
 
69
65
  if prover_cmd:
@@ -78,7 +74,7 @@ def run_certora(args: List[str], attrs_class: Optional[Type[AttrUtil.Attributes]
78
74
  # Collect and dump configuration layout
79
75
  collect_and_dump_config_layout(context)
80
76
 
81
- if Attrs.is_evm_app() and context.split_rules:
77
+ if context.split_rules:
82
78
  context.build_only = True
83
79
  build(context)
84
80
  context.build_only = False
@@ -90,96 +86,60 @@ def run_certora(args: List[str], attrs_class: Optional[Type[AttrUtil.Attributes]
90
86
  else:
91
87
  raise Util.ExitException("Split rules failed", exit_code)
92
88
 
93
- if Attrs.is_rust_app():
94
- set_rust_build_directory(context)
95
-
96
- if context.local:
97
- check_cmd = Ctx.get_local_run_cmd(context)
98
- check_cmd_string = " ".join(check_cmd)
99
- print(f"Verifier run command:\n {check_cmd_string}", flush=True)
100
-
101
- compare_with_tool_output = False
102
- if context.test == str(Util.TestValue.BEFORE_LOCAL_PROVER_CALL):
103
- raise Util.TestResultsReady(' '.join(check_cmd))
104
- run_result = Util.run_jar_cmd(check_cmd, compare_with_tool_output, logger_topic="verification",
105
- print_output=True)
106
- # For solana and wasm, we don't check types so build time is zero.
107
- timings["buildTime"] = 0.0
108
- if run_result != 0:
109
- exit_code = 1
110
- else:
111
- Util.print_completion_message("Finished running verifier:")
112
- print(f"\t{check_cmd_string}")
113
- else:
114
- validate_version_and_branch(context)
115
- context.key = Cv.validate_certora_key()
116
- cloud_verifier = CloudVerification(context, timings)
117
- # Wrap strings with space with ' so it can be copied and pasted to shell
118
- pretty_args = [f"'{arg}'" if ' ' in arg else arg for arg in args]
119
- cl_args = ' '.join(pretty_args)
120
- logging_manager.remove_debug_logger()
121
- result = cloud_verifier.cli_verify_and_report(cl_args, context.wait_for_results)
122
- if cloud_verifier.statusUrl:
123
- return_value = CertoraRunResult(cloud_verifier.statusUrl, False,
124
- Util.get_certora_sources_dir(), cloud_verifier.reportUrl)
89
+ # Version validation
90
+ ensure_version_compatibility(context)
91
+
92
+ # When a TAC file is provided, no build arguments will be processed
93
+ if not context.is_tac:
94
+ run_logger.debug(f"There is no TAC file. Going to script {BUILD_SCRIPT_PATH} to main_with_args()")
95
+ build_start = time.perf_counter()
96
+
97
+ # If we are not in CI, we also check the spec for Syntax errors.
98
+ build(context)
99
+ build_end = time.perf_counter()
100
+
101
+ timings["buildTime"] = round(build_end - build_start, 4)
102
+ if context.test == str(Util.TestValue.AFTER_BUILD):
103
+ raise Util.TestResultsReady(context)
104
+
105
+ if context.build_only:
106
+ return return_value
107
+
108
+ # either we skipped building (TAC MODE) or build succeeded
109
+ if context.local:
110
+ compare_with_expected_file = Path(context.expected_file).exists()
111
+
112
+ run_result = run_local(context, timings, compare_with_expected_file=compare_with_expected_file)
113
+ emv_dir = latest_emv_dir()
114
+ return_value = CertoraRunResult(str(emv_dir) if emv_dir else None, True,
115
+ Util.get_certora_sources_dir(), None)
116
+ if run_result != 0:
117
+ exit_code = run_result
118
+ elif compare_with_expected_file:
119
+ print("Comparing tool output to the expected output:")
120
+ output_path = context.tool_output or (
121
+ 'tmpOutput.json' if emv_dir is None else
122
+ str(emv_dir / 'Reports/output.json')
123
+ )
124
+ result = Util.check_results_from_file(output_path, context.expected_file)
125
125
  if not result:
126
126
  exit_code = 1
127
- else:
128
-
129
- # Version validation
130
- ensure_version_compatibility(context)
131
-
132
- # When a TAC file is provided, no build arguments will be processed
133
- if not context.is_tac:
134
- run_logger.debug(f"There is no TAC file. Going to script {BUILD_SCRIPT_PATH} to main_with_args()")
135
- build_start = time.perf_counter()
136
-
137
- # If we are not in CI, we also check the spec for Syntax errors.
138
- build(context)
139
- build_end = time.perf_counter()
140
-
141
- timings["buildTime"] = round(build_end - build_start, 4)
142
- if context.test == str(Util.TestValue.AFTER_BUILD):
143
- raise Util.TestResultsReady(context)
144
-
145
- if context.build_only:
146
- return return_value
147
-
148
- # either we skipped building (TAC MODE) or build succeeded
149
- if context.local:
150
- compare_with_expected_file = Path(context.expected_file).exists()
151
-
152
- run_result = run_local(context, timings, compare_with_expected_file=compare_with_expected_file)
153
- emv_dir = latest_emv_dir()
154
- return_value = CertoraRunResult(str(emv_dir) if emv_dir else None, True,
155
- Util.get_certora_sources_dir(), None)
156
- if run_result != 0:
157
- exit_code = run_result
158
- elif compare_with_expected_file:
159
- print("Comparing tool output to the expected output:")
160
- output_path = context.tool_output or (
161
- 'tmpOutput.json' if emv_dir is None else
162
- str(emv_dir / 'Reports/output.json')
163
- )
164
- result = Util.check_results_from_file(output_path, context.expected_file)
165
- if not result:
166
- exit_code = 1
167
- else: # Remote run
168
- # Syntax checking and typechecking
169
- if Cv.mode_has_spec_file(context):
170
- if context.disable_local_typechecking:
171
- run_logger.warning(
172
- "Local checks of CVL specification files disabled. It is recommended to enable "
173
- "the checks.")
174
- else:
175
- typechecking_start = time.perf_counter()
176
- Ctx.run_local_spec_check(True, context)
177
- typechecking_end = time.perf_counter()
178
- timings['typecheckingTime'] = round(typechecking_end - typechecking_start, 4)
179
-
180
- # Remove debug logger and run remote verification
181
- logging_manager.remove_debug_logger()
182
- exit_code, return_value = run_remote(context, args, timings)
127
+ else: # Remote run
128
+ # Syntax checking and typechecking
129
+ if Cv.mode_has_spec_file(context):
130
+ if context.disable_local_typechecking:
131
+ run_logger.warning(
132
+ "Local checks of CVL specification files disabled. It is recommended to enable "
133
+ "the checks.")
134
+ else:
135
+ typechecking_start = time.perf_counter()
136
+ Ctx.run_local_spec_check(True, context)
137
+ typechecking_end = time.perf_counter()
138
+ timings['typecheckingTime'] = round(typechecking_end - typechecking_start, 4)
139
+
140
+ # Remove debug logger and run remote verification
141
+ logging_manager.remove_debug_logger()
142
+ exit_code, return_value = run_remote(context, args, timings)
183
143
 
184
144
  # Handle exit codes and return
185
145
  return handle_exit(exit_code, return_value)
@@ -25,7 +25,7 @@ sys.path.insert(0, str(scripts_dir_path))
25
25
 
26
26
 
27
27
  import CertoraProver.certoraContextAttributes as Attrs
28
- from Shared.rustProverCommon import build_rust_project
28
+ from CertoraProver.certoraBuildRust import build_rust_project
29
29
  from Shared.proverCommon import (
30
30
  build_context,
31
31
  collect_and_dump_metadata,
@@ -26,7 +26,7 @@ from typing import List, Optional, Dict
26
26
 
27
27
  import CertoraProver.certoraContextAttributes as Attrs
28
28
 
29
- from Shared.rustProverCommon import build_rust_project
29
+ from CertoraProver.certoraBuildRust import build_rust_project
30
30
  from Shared.proverCommon import (
31
31
  build_context,
32
32
  collect_and_dump_metadata,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: certora-cli-beta-mirror
3
- Version: 7.31.0
3
+ Version: 8.0.0
4
4
  Summary: Runner for the Certora Prover
5
5
  Home-page: https://pypi.org/project/certora-cli-beta-mirror
6
6
  Author: Certora
@@ -11,7 +11,7 @@ Project-URL: Source, https://github.com/Certora/CertoraProver
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
13
13
  Classifier: Operating System :: OS Independent
14
- Requires-Python: >=3.8
14
+ Requires-Python: >=3.9
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
17
  Requires-Dist: click
@@ -38,4 +38,4 @@ Dynamic: requires-dist
38
38
  Dynamic: requires-python
39
39
  Dynamic: summary
40
40
 
41
- Commit 89159ec. Build and Run scripts for executing the Certora Prover on Solidity smart contracts.
41
+ Commit 852805e. Build and Run scripts for executing the Certora Prover on Solidity smart contracts.
@@ -1,27 +1,30 @@
1
1
  certora_bins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  certora_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ certora_cli/certoraCVLFormatter.py,sha256=P2S5Lk4R-Xg09ex0EYXTqlsd8FgY226n_pQImWcDPKk,2767
4
+ certora_cli/certoraConcord.py,sha256=cyRShi1ArHqVcruvxdYw5sw60lHt-t4mcauk7a7c2xU,1317
3
5
  certora_cli/certoraEVMProver.py,sha256=gLxqPXG9jKlCdLdgfo0aNjvp09vbHGSs8wghY6RH0Gg,1274
4
6
  certora_cli/certoraEqCheck.py,sha256=qfZq7bpU1kbAIezC66W61VfKNZz7Uywg2Ygup62qYeo,1069
5
7
  certora_cli/certoraMutate.py,sha256=XhFHyNVP_sk-3XkY6AAV5fVliEFAVRq-JeDGsqE5IQQ,3333
6
8
  certora_cli/certoraRanger.py,sha256=cwejxWTNlHsbwtu6Lew0SNsynSeq_ZKJu1Cr9uu0DhE,1314
7
- certora_cli/certoraRun.py,sha256=mTBAi-SVCApy8BvfvKAL8Z4PdGcaBV3G5vNXPrFdgTI,8817
8
- certora_cli/certoraSolanaProver.py,sha256=7hu-YJJNA_P5eAJq_jYh6IGjiUf0PegGUBRCJ5AhE7s,3274
9
- certora_cli/certoraSorobanProver.py,sha256=qE6b_vicC8KgOvUz7UTOaDuXT3UW0MMhq3keQgUVvzs,2865
9
+ certora_cli/certoraRun.py,sha256=ueQiuTUb_zTzZDoD2VTAj9rXn8MLCTZMvIJciXGPiEY,6652
10
+ certora_cli/certoraSolanaProver.py,sha256=PIuJiFHPq8oeU1Q_RMb3C7Lcc4_LyaaLrp3TKBNBMl4,3281
11
+ certora_cli/certoraSorobanProver.py,sha256=thqd0mAcjAOZO5oHByihbGhpGfrIz3ImqLzwSfd-xOw,2872
10
12
  certora_cli/rustMutator.py,sha256=6AvOGU8Ijz89zW_ZJCWlfXkeobJsk7EsqZhK7Eqwn-Y,14544
11
13
  certora_cli/CertoraProver/__init__.py,sha256=QHNr-PJQAoyuPgTkO7gg23GRchiWSXglWNG7yLSQZvs,849
12
- certora_cli/CertoraProver/certoraBuild.py,sha256=eAAaRcyF16XNjr9Es54cQPutErqjW6j8VUefrGAxumc,212517
13
- certora_cli/CertoraProver/certoraBuildCacheManager.py,sha256=I60x0ykMFPzciD193cPXihsHh0fdV--UOmNKbIZW6Rc,13238
14
+ certora_cli/CertoraProver/certoraBuild.py,sha256=yk4zzGATe-HPqVUPwNBejaCqPN3WqLQPEsiNJobTdE0,212894
15
+ certora_cli/CertoraProver/certoraBuildCacheManager.py,sha256=YnZmBZ_gCIbLwExgK5oxFlVDQGe4_YuGIpDLMy589E0,13318
14
16
  certora_cli/CertoraProver/certoraBuildDataClasses.py,sha256=8tPny9-pasC7CCRKQclaVQ3qcEDNa6EdOUu1ZWh0MZY,14704
15
- certora_cli/CertoraProver/certoraBuildRust.py,sha256=ofKvmtqzUGTrgVm5crcybV7gbElbjiUc6Z4FphPEjz0,6016
16
- certora_cli/CertoraProver/certoraCloudIO.py,sha256=w3mqA5ANgIX6dsb6Nxg4jl9zBRdAX5kw9xLeYmA-iHc,53062
17
+ certora_cli/CertoraProver/certoraBuildRust.py,sha256=s_tZpzQQLASYiv27LLqn6S_FVUKn5UOljXQgIGrjlBo,6051
18
+ certora_cli/CertoraProver/certoraBuildSui.py,sha256=oOY6l3JnxYtFl3i3ibEcOp69x0mKsFg4Z86UnVC6CwY,2383
19
+ certora_cli/CertoraProver/certoraCloudIO.py,sha256=99IRWSA4wAF1q_yu7m1IpDlybMVqtupW_C5qa3Xrhs0,54351
17
20
  certora_cli/CertoraProver/certoraCollectConfigurationLayout.py,sha256=6aHEGrhT_Y9aYfM5n_Mk--awgcQfdtc-chBPRl7FU4E,14095
18
- certora_cli/CertoraProver/certoraCollectRunMetadata.py,sha256=n67E7hjVdPlBXMh1FMzcWSgu3v5SfFM_HOO2JpbCeY0,11787
21
+ certora_cli/CertoraProver/certoraCollectRunMetadata.py,sha256=i31dkYt8kwlX44SHZtV_b8QI1Egi6cbB5-uuh5beYN0,12630
19
22
  certora_cli/CertoraProver/certoraCompilerParameters.py,sha256=r35y03IRwWIoz1GCNC7PuW3n8JPz9J1NGwhwUYKdYtI,1452
20
- certora_cli/CertoraProver/certoraConfigIO.py,sha256=uq-uNnjVBzg9Kh41fDqn-lnwSJXe4k2_iy5GTnQIDa8,7560
21
- certora_cli/CertoraProver/certoraContext.py,sha256=HyYQlzIEk3gzzEH2ilTC_Qxw1zXvsKU3IJuCLiV2Sro,26916
22
- certora_cli/CertoraProver/certoraContextAttributes.py,sha256=d8ywqZrWfhzwS8w3VSduwIqwgSASML7k_guXzsoxIdU,69463
23
+ certora_cli/CertoraProver/certoraConfigIO.py,sha256=TEmOhbuZLuX8AEJorungS_dP_90nZLdbnJFUGLdUFng,7604
24
+ certora_cli/CertoraProver/certoraContext.py,sha256=2quDk2spVMtDIOI4oCN_m3Jwnbk-_u82LE0AEbDpSU0,28225
25
+ certora_cli/CertoraProver/certoraContextAttributes.py,sha256=UBhbGvbacsuIPb6XpQ_edNPObMjFeLWt_wPhKxvnyYI,66504
23
26
  certora_cli/CertoraProver/certoraContextClass.py,sha256=d7HDqM72K7YnswR7kEcAHGwkFNrTqRz5-_0m7cl2Mso,900
24
- certora_cli/CertoraProver/certoraContextValidator.py,sha256=SgdtQJFimBi51c9SUnpgEYow9FBEYU_7LUdZhISBxpo,45064
27
+ certora_cli/CertoraProver/certoraContextValidator.py,sha256=CW54on8TtVyx0Euma-ysJ94jK9QKuyUyCSGZwdtwZHY,46341
25
28
  certora_cli/CertoraProver/certoraContractFuncs.py,sha256=ipSwge5QQzp8qhUavY44bZ-eCR6szK_HWwSIWqQyuR0,6921
26
29
  certora_cli/CertoraProver/certoraExtensionInfo.py,sha256=YlShzdoqJQgXXj3r0TJ3fir1KntIR99Rk8JN5qii2lk,2026
27
30
  certora_cli/CertoraProver/certoraJobList.py,sha256=FBIYgJ60I0Ok7vchfTbcuJJbiXgnfAhrONoVeZoHti4,11464
@@ -31,10 +34,10 @@ certora_cli/CertoraProver/certoraParseBuildScript.py,sha256=l7KQA1poEjmbmuYbMskz
31
34
  certora_cli/CertoraProver/certoraProjectScanner.py,sha256=jT7FeWzcy8o83LrZRwsg_L4x6im6Fm_0LZFKVbKr3Jk,6862
32
35
  certora_cli/CertoraProver/certoraSourceFinders.py,sha256=qwJtwrQq3NUNYmdmn1UmANN4lmJFIUh4M-St2x1FJ2Y,19038
33
36
  certora_cli/CertoraProver/certoraType.py,sha256=wD-Sr3xk_dJGtbvw33oIGu_lf15NCZuKWjUb4HlVcUM,29318
34
- certora_cli/CertoraProver/certoraVerifyGenerator.py,sha256=nZlSuw57oLwPKj4ec3Kn9q05PevaYd3ZD1O8FTSjZn4,10825
37
+ certora_cli/CertoraProver/certoraVerifyGenerator.py,sha256=VcWUprCL6dxE28B2gzYYXZK-rav5KU1Pd6Fuq1gC3xA,11006
35
38
  certora_cli/CertoraProver/erc7201.py,sha256=BME5kBZsDx6lgqLn7EE91I1cEOZtsnZ8BlRVF62eEBE,1660
36
- certora_cli/CertoraProver/splitRules.py,sha256=HfSqsKeeLZDeOnv8TGgpPDHoaXgdVc0HOrLcGk-cU1Q,7681
37
- certora_cli/CertoraProver/storageExtension.py,sha256=BZC9HJygeLxqS5TmhNxbIrVNfH3kLEPjN1VjsWQi8s8,15922
39
+ certora_cli/CertoraProver/splitRules.py,sha256=YisV7T_Rr2MpVAcantCVp9aPeFI-qtcdo81eecjK2AU,7683
40
+ certora_cli/CertoraProver/storageExtension.py,sha256=nrCrbH8ne-yCYSDFzh3J9A7Q6h96WxhEfLbfxGSUCSc,14363
38
41
  certora_cli/CertoraProver/Compiler/CompilerCollector.py,sha256=cr-PIl7LY9VfNs4s4H3-EnSnomPiCgXudfwP9-KenMk,6740
39
42
  certora_cli/CertoraProver/Compiler/CompilerCollectorFactory.py,sha256=TOpHMSYGhfSmVQwJYZMVOI_Ws03k6cTffzaQUmhnNUo,8761
40
43
  certora_cli/CertoraProver/Compiler/CompilerCollectorSol.py,sha256=7nAY2FLMUlGJn4f_YoZMqpa3rf7THqhJVjLwTaChcBc,5027
@@ -51,25 +54,25 @@ certora_cli/EquivalenceCheck/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
51
54
  certora_cli/EquivalenceCheck/equivCheck.py,sha256=D3TA1DRppaXpEcVW_smqMQzeUle0jPu0wIXXEd5un0U,20620
52
55
  certora_cli/EquivalenceCheck/sanity.spec,sha256=tWmE9z2Sq3_SWaqKDRQaNajRrw94maUrirvoUmX89LE,103
53
56
  certora_cli/Mutate/__init__.py,sha256=QHNr-PJQAoyuPgTkO7gg23GRchiWSXglWNG7yLSQZvs,849
54
- certora_cli/Mutate/mutateApp.py,sha256=vLLTokkVs-dSyOPSymMZRGj_MmVxwdogTJgS_8LqPXI,87887
55
- certora_cli/Mutate/mutateAttributes.py,sha256=brsoisPowxpxQxN_-y0NDvsv8feoHONhtlOayXaLDdk,10092
57
+ certora_cli/Mutate/mutateApp.py,sha256=jcZGd-bk_8UeewCHfUoHF5Ch1NZ-A7wgFBShXFBMZx0,88255
58
+ certora_cli/Mutate/mutateAttributes.py,sha256=2onGaPmztwmHg5V_X7BUG4HcQCThhqYzGYKBy695Izc,10587
56
59
  certora_cli/Mutate/mutateConstants.py,sha256=LRrz3wMM8WpPYSshkc-PLYqT0nexcWQeBNsehip-LOE,3945
57
60
  certora_cli/Mutate/mutateUtil.py,sha256=B7MCIFtZBetjR4MMxU6F5ikYsaot1wTG7XYMjgVXl4k,2287
58
61
  certora_cli/Mutate/mutateValidate.py,sha256=9mWzR1zd9N_k78IH9MkvnTzUWb1xPdW086b2-lpi4mQ,7437
59
62
  certora_cli/Shared/ExpectedComparator.py,sha256=eyRR-jni4WJoa6j2TK2lnZ89Tyb8U99wT2PNdu4se8w,18457
60
63
  certora_cli/Shared/__init__.py,sha256=s0dhvolFtsS4sRNzPVhC_rlw8mm194rCZ0WhOxInY40,1025
61
- certora_cli/Shared/certoraAttrUtil.py,sha256=ZsoS6xbSZnAjEoPEcfiJi6CvHU-1ySBKubvVKh78ohs,8373
64
+ certora_cli/Shared/certoraAttrUtil.py,sha256=Nw8ban5Axp6c6dT-KJfCD9i9tKnGk1DbvRDDNH3--DU,8574
62
65
  certora_cli/Shared/certoraLogging.py,sha256=cV2UQMhQ5j8crGXgeq9CEamI-Lk4HgdiA3HCrP-kSR4,14013
63
- certora_cli/Shared/certoraUtils.py,sha256=5uxgeGyfq8jw4w9l7fxiyMsgw74GpEtS8Wy8u5MNBHs,55178
64
- certora_cli/Shared/certoraValidateFuncs.py,sha256=Fn6GN_LEwlMjBdTiVO6WzCg8P5F6DhwkvP9Xl-XiQ6o,41921
65
- certora_cli/Shared/proverCommon.py,sha256=PqkjycZ3TdZr0RNWoPuA_VZ5b7EAAsu9ewymNH6kIm4,11291
66
- certora_cli/Shared/rustProverCommon.py,sha256=NIZ5ECbhuiMegyRAl07CV3r68MFG2tBNKgUAQoV4uLI,2049
67
- certora_jars/CERTORA-CLI-VERSION-METADATA.json,sha256=YT2XfCbYZ3cwuV-9FyvRVu5GrruMtCHqT0n1kvOSlGY,145
68
- certora_jars/Typechecker.jar,sha256=NmnUZaxhNvRthGr1tEh9FVlT0wEO8A-jj9J22gOtngY,17143207
66
+ certora_cli/Shared/certoraUtils.py,sha256=3imWdLsEQhpEHCpfERHet_zJLu1aShgf3XQFs8Qvbr8,55006
67
+ certora_cli/Shared/certoraValidateFuncs.py,sha256=BPLuVsS3yAcYIuCvkXtDuFQKf2qaT74TIddB0lM84yM,42508
68
+ certora_cli/Shared/proverCommon.py,sha256=jpX4nfzIPvBHI9IUW3e2rwLHOC_Op8vDW9672J-EANk,11305
69
+ certora_jars/ASTExtraction.jar,sha256=58Ex1h7YYLpkAYZorsYJ0EHJlR1uWs_nN-jG0i4Cgkk,17533256
70
+ certora_jars/CERTORA-CLI-VERSION-METADATA.json,sha256=i7WoCF3KuTtnU1nNmEJHC2QA5vUPt9WCXRF8QqqOw-w,144
71
+ certora_jars/Typechecker.jar,sha256=JtIlUDMIP9YK_jeEnKWxJTt8gctTU9ZLZZjQlN5qJmw,17495413
69
72
  certora_jars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- certora_cli_beta_mirror-7.31.0.dist-info/LICENSE,sha256=UGKSKIJSetF8m906JLKqNLkUS2CL60XfQdNvxBvpQXo,620
71
- certora_cli_beta_mirror-7.31.0.dist-info/METADATA,sha256=OGfFfEjLrMpnJSD69pQjP_yH9-2Jfvh1GviqnGpZTN0,1254
72
- certora_cli_beta_mirror-7.31.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
73
- certora_cli_beta_mirror-7.31.0.dist-info/entry_points.txt,sha256=_SQ5_uYOAJXtqEW992nIvq7blW9cWFSUVEdbMGuy--4,443
74
- certora_cli_beta_mirror-7.31.0.dist-info/top_level.txt,sha256=8C77w3JLanY0-NW45vpJsjRssyCqVP-qmPiN9FjWiX4,38
75
- certora_cli_beta_mirror-7.31.0.dist-info/RECORD,,
73
+ certora_cli_beta_mirror-8.0.0.dist-info/LICENSE,sha256=UGKSKIJSetF8m906JLKqNLkUS2CL60XfQdNvxBvpQXo,620
74
+ certora_cli_beta_mirror-8.0.0.dist-info/METADATA,sha256=o6xRNRvYfzjWcYk-LEPODsMZbNrYZOuKWfqBrbsf_lE,1253
75
+ certora_cli_beta_mirror-8.0.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
76
+ certora_cli_beta_mirror-8.0.0.dist-info/entry_points.txt,sha256=ClZiFkCYDdK25_ufxZvnE2Rx_kNk1_4vj7KpgYUKxGM,509
77
+ certora_cli_beta_mirror-8.0.0.dist-info/top_level.txt,sha256=8C77w3JLanY0-NW45vpJsjRssyCqVP-qmPiN9FjWiX4,38
78
+ certora_cli_beta_mirror-8.0.0.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  [console_scripts]
2
+ certoraCVLFormatter = certora_cli.certoraCVLFormatter:entry_point
2
3
  certoraEVMProver = certora_cli.certoraEVMProver:entry_point
3
4
  certoraEqCheck = certora_cli.certoraEqCheck:equiv_check_entry_point
4
5
  certoraMutate = certora_cli.certoraMutate:mutate_entry_point
Binary file
@@ -1 +1 @@
1
- {"name": "certora-cli-beta-mirror", "tag": "7.31.0", "branch": "", "commit": "89159ec", "timestamp": "20250624.9.18.557504", "version": "7.31.0"}
1
+ {"name": "certora-cli-beta-mirror", "tag": "8.0.0", "branch": "", "commit": "852805e", "timestamp": "20250721.16.13.726664", "version": "8.0.0"}
Binary file