Feature/custom detectors api - #833
Open
Luchistack wants to merge 3 commits into
Open
Conversation
ethnum 1.5.0 (via soroban-env-common 20.3.0) fails on newer rustc with E0512 (transmute size mismatch); no newer ethnum is allowed by the soroban constraint, so pin the toolchain. 1.85.0 is the lowest stable that also satisfies base64ct 1.8.3's edition2024 requirement. Also fix clippy lints newly enforced by 1.85: only_used_in_recursion on the two estimate_type_size methods and collapsible_else_if in analyze.rs.
…for Sanctifier scan
Gbangbolaoluwagbemiga
force-pushed
the
main
branch
2 times, most recently
from
July 22, 2026 16:51
32f43f6 to
f15d961
Compare
Contributor
|
@Luchistack , ci pipeline failed, please pull from upstream and resolve the ci, a major fix has been commit to the main branch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#closes #725
Summary of Changes
Ruletrait and registry module (tooling/sanctifier-core/src/rules/mod.rs) to allow third-party developers to write and register custom static analysis detectors.NoUnsafeBlockRuledetector (tooling/sanctifier-core/src/rules/example.rs) to showcase custom rule authoring for Soroban smart contracts.docs/api/custom-rules.md) outlining the rule-authoring API and registration usage.Type of Change
feat)docs)Testing & Verification
#closes