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.
- certora_cli/CertoraProver/certoraBuild.py +19 -18
- certora_cli/CertoraProver/certoraBuildCacheManager.py +2 -0
- certora_cli/CertoraProver/certoraBuildRust.py +31 -20
- certora_cli/{Shared/rustProverCommon.py → CertoraProver/certoraBuildSui.py} +24 -18
- certora_cli/CertoraProver/certoraCloudIO.py +37 -8
- certora_cli/CertoraProver/certoraCollectRunMetadata.py +20 -5
- certora_cli/CertoraProver/certoraConfigIO.py +15 -13
- certora_cli/CertoraProver/certoraContext.py +33 -8
- certora_cli/CertoraProver/certoraContextAttributes.py +113 -195
- certora_cli/CertoraProver/certoraContextValidator.py +69 -40
- certora_cli/CertoraProver/certoraVerifyGenerator.py +9 -4
- certora_cli/CertoraProver/splitRules.py +2 -0
- certora_cli/CertoraProver/storageExtension.py +0 -35
- certora_cli/Mutate/mutateApp.py +16 -10
- certora_cli/Mutate/mutateAttributes.py +11 -0
- certora_cli/Shared/certoraAttrUtil.py +11 -5
- certora_cli/Shared/certoraUtils.py +29 -28
- certora_cli/Shared/certoraValidateFuncs.py +24 -12
- certora_cli/Shared/proverCommon.py +4 -2
- certora_cli/certoraCVLFormatter.py +76 -0
- certora_cli/certoraConcord.py +39 -0
- certora_cli/certoraRun.py +55 -95
- certora_cli/certoraSolanaProver.py +1 -1
- certora_cli/certoraSorobanProver.py +1 -1
- {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/METADATA +3 -3
- {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/RECORD +33 -30
- {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/entry_points.txt +1 -0
- certora_jars/ASTExtraction.jar +0 -0
- certora_jars/CERTORA-CLI-VERSION-METADATA.json +1 -1
- certora_jars/Typechecker.jar +0 -0
- {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/LICENSE +0 -0
- {certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/WHEEL +0 -0
- {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
|
|
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:
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
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
|
|
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
|
|
29
|
+
from CertoraProver.certoraBuildRust import build_rust_project
|
|
30
30
|
from Shared.proverCommon import (
|
|
31
31
|
build_context,
|
|
32
32
|
collect_and_dump_metadata,
|
{certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: certora-cli-beta-mirror
|
|
3
|
-
Version:
|
|
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.
|
|
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
|
|
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=
|
|
8
|
-
certora_cli/certoraSolanaProver.py,sha256=
|
|
9
|
-
certora_cli/certoraSorobanProver.py,sha256=
|
|
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=
|
|
13
|
-
certora_cli/CertoraProver/certoraBuildCacheManager.py,sha256=
|
|
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=
|
|
16
|
-
certora_cli/CertoraProver/
|
|
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=
|
|
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=
|
|
21
|
-
certora_cli/CertoraProver/certoraContext.py,sha256=
|
|
22
|
-
certora_cli/CertoraProver/certoraContextAttributes.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
37
|
-
certora_cli/CertoraProver/storageExtension.py,sha256=
|
|
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=
|
|
55
|
-
certora_cli/Mutate/mutateAttributes.py,sha256=
|
|
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=
|
|
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=
|
|
64
|
-
certora_cli/Shared/certoraValidateFuncs.py,sha256=
|
|
65
|
-
certora_cli/Shared/proverCommon.py,sha256=
|
|
66
|
-
|
|
67
|
-
certora_jars/CERTORA-CLI-VERSION-METADATA.json,sha256=
|
|
68
|
-
certora_jars/Typechecker.jar,sha256=
|
|
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-
|
|
71
|
-
certora_cli_beta_mirror-
|
|
72
|
-
certora_cli_beta_mirror-
|
|
73
|
-
certora_cli_beta_mirror-
|
|
74
|
-
certora_cli_beta_mirror-
|
|
75
|
-
certora_cli_beta_mirror-
|
|
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": "
|
|
1
|
+
{"name": "certora-cli-beta-mirror", "tag": "8.0.0", "branch": "", "commit": "852805e", "timestamp": "20250721.16.13.726664", "version": "8.0.0"}
|
certora_jars/Typechecker.jar
CHANGED
|
Binary file
|
{certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{certora_cli_beta_mirror-7.31.0.dist-info → certora_cli_beta_mirror-8.0.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|