https://github.com/nathaniel-brough/fuzz-introspector-client
An unofficial client library for the fuzz-introspector API.
https://github.com/nathaniel-brough/fuzz-introspector-client
fuzz introspector rust
Last synced: 10 months ago
JSON representation
An unofficial client library for the fuzz-introspector API.
- Host: GitHub
- URL: https://github.com/nathaniel-brough/fuzz-introspector-client
- Owner: nathaniel-brough
- License: mit
- Created: 2023-11-20T21:19:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-11T14:10:44.000Z (11 months ago)
- Last Synced: 2025-08-29T19:40:26.665Z (10 months ago)
- Topics: fuzz, introspector, rust
- Language: Rust
- Homepage: https://crates.io/crates/fuzz-introspector-client
- Size: 15.6 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fuzz-introspector-client
An unofficial client library for the
[fuzz-introspector API](https://introspector.oss-fuzz.com/api).
## Quickstart
Add package as a dependency;
`cargo add fuzz-introspector-client`
```rust
use fuzz_introspector_client::introspector::{
all_functions, annotated_config, branch_blockers, far_reach_but_low_coverage, project_summary,
};
println!("{:?}", all_functions("json-c").await.unwrap());
println!("{:?}", annotated_config("json-c").await.unwrap());
println!("{:?}", branch_blockers("json-c").await.unwrap());
println!("{:?}", far_reach_but_low_coverage("json-c").await.unwrap());
println!("{:?}", project_summary("json-c").await.unwrap());
```