https://github.com/zyedidia/rustalyzer
https://github.com/zyedidia/rustalyzer
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zyedidia/rustalyzer
- Owner: zyedidia
- Created: 2023-04-01T16:01:09.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-01T16:01:33.000Z (almost 3 years ago)
- Last Synced: 2025-01-16T09:56:36.373Z (12 months ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rustalyzer
Basic static analysis for Rust programs.
Currently Rustalyzer shows the ratio of unsafe statements to all statements. For example:
```
rustalyzer a.rs b.rs c.rs
a.rs: 12/15
b.rs: 0/4
c.rs: 5/19
total: 17/38
```