certora-cli-alpha-master 20250914.16.54.139374__py3-none-macosx_10_9_universal2.whl → 20250916.14.8.625550__py3-none-macosx_10_9_universal2.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 +8 -0
- certora_cli/Shared/certoraUtils.py +2 -0
- {certora_cli_alpha_master-20250914.16.54.139374.dist-info → certora_cli_alpha_master-20250916.14.8.625550.dist-info}/METADATA +2 -2
- {certora_cli_alpha_master-20250914.16.54.139374.dist-info → certora_cli_alpha_master-20250916.14.8.625550.dist-info}/RECORD +11 -11
- certora_jars/ASTExtraction.jar +0 -0
- certora_jars/CERTORA-CLI-VERSION-METADATA.json +1 -1
- certora_jars/Typechecker.jar +0 -0
- {certora_cli_alpha_master-20250914.16.54.139374.dist-info → certora_cli_alpha_master-20250916.14.8.625550.dist-info}/LICENSE +0 -0
- {certora_cli_alpha_master-20250914.16.54.139374.dist-info → certora_cli_alpha_master-20250916.14.8.625550.dist-info}/WHEEL +0 -0
- {certora_cli_alpha_master-20250914.16.54.139374.dist-info → certora_cli_alpha_master-20250916.14.8.625550.dist-info}/entry_points.txt +0 -0
- {certora_cli_alpha_master-20250914.16.54.139374.dist-info → certora_cli_alpha_master-20250916.14.8.625550.dist-info}/top_level.txt +0 -0
@@ -3817,6 +3817,14 @@ def build_source_tree(sources: Set[Path], context: CertoraContext, overwrite: bo
|
|
3817
3817
|
cwd_file_path.parent.mkdir(parents=True, exist_ok=True)
|
3818
3818
|
cwd_file_path.touch()
|
3819
3819
|
|
3820
|
+
# copy context.forge_remappings to remappings.txt in the source tree, overwriting any existing remappings.txt
|
3821
|
+
forge_remappings = getattr(context, 'forge_remappings', None)
|
3822
|
+
if forge_remappings:
|
3823
|
+
remappings_file_path = Util.get_certora_sources_dir() / context.cwd_rel_in_sources / Util.REMAPPINGS_FILE
|
3824
|
+
with remappings_file_path.open("w") as remap_file:
|
3825
|
+
for remap in context.forge_remappings:
|
3826
|
+
remap_file.write(remap + "\n")
|
3827
|
+
|
3820
3828
|
# the empty file .project_directory is written in the source tree to denote the project directory
|
3821
3829
|
rust_proj_dir = getattr(context, 'rust_project_directory', None)
|
3822
3830
|
if rust_proj_dir:
|
@@ -1418,6 +1418,8 @@ def handle_remappings_file(context: SimpleNamespace) -> List[str]:
|
|
1418
1418
|
elif find_nearest_foundry_toml():
|
1419
1419
|
remappings = get_mappings_from_forge_remappings()
|
1420
1420
|
|
1421
|
+
context.forge_remappings = remappings
|
1422
|
+
|
1421
1423
|
return remappings
|
1422
1424
|
|
1423
1425
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: certora-cli-alpha-master
|
3
|
-
Version:
|
3
|
+
Version: 20250916.14.8.625550
|
4
4
|
Summary: Runner for the Certora Prover
|
5
5
|
Home-page: https://pypi.org/project/certora-cli-alpha-master
|
6
6
|
Author: Certora
|
@@ -39,4 +39,4 @@ Dynamic: requires-dist
|
|
39
39
|
Dynamic: requires-python
|
40
40
|
Dynamic: summary
|
41
41
|
|
42
|
-
Commit
|
42
|
+
Commit 1edcf49. Build and Run scripts for executing the Certora Prover on Solidity smart contracts.
|
@@ -13,7 +13,7 @@ certora_cli/certoraSorobanProver.py,sha256=SYJKz5Sw-N0bJrSa1njRCE53R9_PMz7IWLhfa
|
|
13
13
|
certora_cli/rustMutator.py,sha256=6AvOGU8Ijz89zW_ZJCWlfXkeobJsk7EsqZhK7Eqwn-Y,14544
|
14
14
|
certora_cli/CertoraProver/__init__.py,sha256=QHNr-PJQAoyuPgTkO7gg23GRchiWSXglWNG7yLSQZvs,849
|
15
15
|
certora_cli/CertoraProver/certoraApp.py,sha256=RKJ2Krb_CzbRUvczbdE6FhUDrFcvrR8j0JS8MNWXX7s,1469
|
16
|
-
certora_cli/CertoraProver/certoraBuild.py,sha256=
|
16
|
+
certora_cli/CertoraProver/certoraBuild.py,sha256=ileKhlWeKmt5VADQxR8RyB9UzsoWHaMsiOsVkdEToMs,223972
|
17
17
|
certora_cli/CertoraProver/certoraBuildCacheManager.py,sha256=YnZmBZ_gCIbLwExgK5oxFlVDQGe4_YuGIpDLMy589E0,13318
|
18
18
|
certora_cli/CertoraProver/certoraBuildDataClasses.py,sha256=hO0w3YK9V9gZsTbh4gxxlnEAaOiubUwfzNEw6uL1HaE,14841
|
19
19
|
certora_cli/CertoraProver/certoraBuildRust.py,sha256=ZPbNp4ttRmzcKhFsgHSiHDRExNPaLOzgxTRqu23o1D0,6061
|
@@ -65,16 +65,16 @@ certora_cli/Shared/ExpectedComparator.py,sha256=eyRR-jni4WJoa6j2TK2lnZ89Tyb8U99w
|
|
65
65
|
certora_cli/Shared/__init__.py,sha256=s0dhvolFtsS4sRNzPVhC_rlw8mm194rCZ0WhOxInY40,1025
|
66
66
|
certora_cli/Shared/certoraAttrUtil.py,sha256=Nw8ban5Axp6c6dT-KJfCD9i9tKnGk1DbvRDDNH3--DU,8574
|
67
67
|
certora_cli/Shared/certoraLogging.py,sha256=cV2UQMhQ5j8crGXgeq9CEamI-Lk4HgdiA3HCrP-kSR4,14013
|
68
|
-
certora_cli/Shared/certoraUtils.py,sha256=
|
68
|
+
certora_cli/Shared/certoraUtils.py,sha256=msCKShnEQCJuXvbbF2YVDs_lAKZclnVIZoYNG0Qe63U,58450
|
69
69
|
certora_cli/Shared/certoraValidateFuncs.py,sha256=BPLuVsS3yAcYIuCvkXtDuFQKf2qaT74TIddB0lM84yM,42508
|
70
70
|
certora_cli/Shared/proverCommon.py,sha256=uZkl9PDLPj81kKRnBnlPUmvhMZovNP25_74No_7jaQ4,11215
|
71
|
-
certora_jars/ASTExtraction.jar,sha256=
|
72
|
-
certora_jars/CERTORA-CLI-VERSION-METADATA.json,sha256=
|
73
|
-
certora_jars/Typechecker.jar,sha256=
|
71
|
+
certora_jars/ASTExtraction.jar,sha256=FjRCLOZM2akporxxv1HZzw2ZV8PeuJzwbAFptXUhNPQ,17652197
|
72
|
+
certora_jars/CERTORA-CLI-VERSION-METADATA.json,sha256=tL6D876FzBGCpU64kQEanhNLODz6JWojC3ZCELJMCWI,168
|
73
|
+
certora_jars/Typechecker.jar,sha256=vu4g5uIWXxq8It8eIgZM2J1X0yCLtOREL7WUS_GjwEg,17614354
|
74
74
|
certora_jars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
75
|
-
certora_cli_alpha_master-
|
76
|
-
certora_cli_alpha_master-
|
77
|
-
certora_cli_alpha_master-
|
78
|
-
certora_cli_alpha_master-
|
79
|
-
certora_cli_alpha_master-
|
80
|
-
certora_cli_alpha_master-
|
75
|
+
certora_cli_alpha_master-20250916.14.8.625550.dist-info/LICENSE,sha256=UGKSKIJSetF8m906JLKqNLkUS2CL60XfQdNvxBvpQXo,620
|
76
|
+
certora_cli_alpha_master-20250916.14.8.625550.dist-info/METADATA,sha256=_bvLYINGK4YPIk2_wiFtJ9CwLmd4dUw0BTllL0hW7K8,1303
|
77
|
+
certora_cli_alpha_master-20250916.14.8.625550.dist-info/WHEEL,sha256=9Ig2YBzm5cpS_YWKLeuYxVAxcKv_uDQsCzy9XJbRZ_g,110
|
78
|
+
certora_cli_alpha_master-20250916.14.8.625550.dist-info/entry_points.txt,sha256=ClZiFkCYDdK25_ufxZvnE2Rx_kNk1_4vj7KpgYUKxGM,509
|
79
|
+
certora_cli_alpha_master-20250916.14.8.625550.dist-info/top_level.txt,sha256=8C77w3JLanY0-NW45vpJsjRssyCqVP-qmPiN9FjWiX4,38
|
80
|
+
certora_cli_alpha_master-20250916.14.8.625550.dist-info/RECORD,,
|
certora_jars/ASTExtraction.jar
CHANGED
Binary file
|
@@ -1 +1 @@
|
|
1
|
-
{"name": "certora-cli-alpha-master", "tag": "", "branch": "master", "commit": "
|
1
|
+
{"name": "certora-cli-alpha-master", "tag": "", "branch": "master", "commit": "1edcf49", "timestamp": "20250916.14.8.625550", "version": "20250916.14.8.625550+1edcf49"}
|
certora_jars/Typechecker.jar
CHANGED
Binary file
|
File without changes
|
File without changes
|
File without changes
|