coviz 0.1.0

Source code logic and call graph visualizer for Go and Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Core library for analyzing source calls and rendering graph output.

pub mod analyzer;
pub mod language;
pub mod model;
pub mod render;

pub use analyzer::{AnalysisOptions, analyze_path, analyze_path_with_options};
pub use language::Language;
pub use model::{Analysis, Call, Function};
pub use render::{render_dot, render_html, render_json};