urlsup 2.4.0

CLI to validate URLs in files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Analysis and reporting
//!
//! This module handles performance analysis, HTML dashboard generation,
//! and structured logging for the application.

pub mod dashboard;
pub mod logging;
pub mod performance;

// Re-export commonly used items
pub use dashboard::{DashboardData, HtmlDashboard};
pub use performance::PerformanceProfiler;