wreq 6.0.0-rc.29

An ergonomic Rust HTTP Client with TLS fingerprint
1
2
3
4
5
6
7
8
9
10
11
//! Unix Domain Socket (UDS) connection types and utilities.

#[cfg(all(unix, feature = "tokio-rt"))]
pub mod tokio;

#[cfg(all(unix, feature = "compio-rt"))]
pub mod compio;

use std::{io::Result, pin::Pin};

type BoxConnecting<T> = Pin<Box<dyn Future<Output = Result<T>> + Send>>;