cargo-callgraph icon indicating copy to clipboard operation
cargo-callgraph copied to clipboard

Callgraph generation for rust project

Results 2 cargo-callgraph issues
Sort by recently updated
recently updated
newest added

# Goal Given the following rust code: ```rust fn main() { let fct = get_fct(); let fct = forward_fct(fct); fct(); } fn foo() { bar() } fn bar() { }...

enhancement

It would be great if it was possible: ``` cargo install cargo-callgraph cargo callgraph ```