yimi-rutool 0.1.1

A comprehensive Rust utility library inspired by Hutool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! HTTP client utilities for rutool
//!
//! This module provides comprehensive HTTP client functionality including:
//! - Simple HTTP requests (GET, POST, PUT, DELETE, etc.)
//! - Async and blocking HTTP clients
//! - Request/response handling with headers and cookies
//! - File upload and download
//! - JSON and form data support

pub mod http_util;

/// Re-export commonly used types for convenience
pub use http_util::HttpUtil;