deboa-compio 0.1.4

A friendly rest client on top of hyper.
Documentation
1
2
3
4
5
6
7
8
9
//! TLS transport implementations for the Deboa HTTP client.
//!
//! This module provides TLS functionality for secure HTTP connections.
//! It supports both native-tls and rustls backends.

#[cfg(feature = "native-tls")]
pub mod native;
#[cfg(feature = "rust-tls")]
pub mod rustls;