cargo-coupling 0.3.7

A coupling analysis tool for Rust projects - measuring the 'right distance' in your code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Web visualization module for cargo-coupling
//!
//! Provides an interactive web-based visualization of coupling metrics,
//! allowing exploration of the 5 coupling dimensions:
//! - Strength (Contract, Model, Functional, Intrusive)
//! - Distance (SameFunction, SameModule, DifferentModule, DifferentCrate)
//! - Volatility (Low, Medium, High)
//! - Balance Score (0.0-1.0)
//! - Connascence (Name, Type, Meaning, Position, Algorithm)

pub mod graph;
pub mod routes;
pub mod server;

pub use graph::GraphData;
pub use server::{DEFAULT_HISTORY_MAX_POINTS, ServerConfig, start_server};