better-fetch 0.1.0

Typed HTTP client layer on top of reqwest — inspired by @better-fetch/fetch
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Tower transport integration (`tower` feature).
//!
//! Bridges [`tower::Service`] to [`HttpBackend`](crate::backend::HttpBackend).
//! See also the [`better-fetch-tower`](https://docs.rs/better-fetch-tower) crate for a
//! standalone dependency on this module.

mod service;
pub mod stack;

#[cfg(feature = "tower-http")]
pub mod trace;

pub use service::{BoxHttpService, ReqwestHttpService, ServiceBackend};