alloy-transport-http 1.6.2

HTTP transport implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Additional layers that may be useful for HTTP transport users. Typically
//! these inject headers into the HTTP requests.
#![cfg(not(target_family = "wasm"))]

#[cfg(feature = "jwt-auth")]
mod auth;
#[cfg(feature = "jwt-auth")]
pub use auth::{AuthLayer, AuthService};

#[cfg(feature = "traceparent")]
mod trace;
#[cfg(feature = "traceparent")]
pub use trace::{TraceParentLayer, TraceParentService};