urlsup 2.4.0

CLI to validate URLs in files
Documentation
1
2
3
4
5
6
7
8
9
//! URL validation logic
//!
//! This module handles HTTP validation of URLs using
//! async requests and connection management.

pub mod validator;

// Re-export commonly used items
pub use validator::{ValidateUrls, ValidationResult, Validator};