fnox 1.22.0

A flexible secret management tool supporting multiple providers and encryption methods
Documentation
use std::time::Duration;

/// Build an HTTP client with the configured timeout from settings.
pub fn http_client() -> reqwest::Client {
    let settings = crate::settings::Settings::get();
    let timeout =
        crate::lease::parse_duration(&settings.http_timeout).unwrap_or(Duration::from_secs(30));
    let user_agent = format!("fnox/{}", env!("CARGO_PKG_VERSION"));
    reqwest::Client::builder()
        .timeout(timeout)
        .user_agent(user_agent)
        .build()
        .unwrap_or_else(|e| {
            tracing::warn!(
                "Failed to build HTTP client with timeout: {e}; using default (no timeout)"
            );
            reqwest::Client::new()
        })
}