qubit-http 0.5.2

General-purpose HTTP infrastructure for Rust with unified client semantics, secure logging, and built-in SSE decoding
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! HTTP response types, streaming body aliases, and response interceptors.

mod http_byte_stream;
mod http_response;
mod http_response_interceptors;
mod http_response_meta;
mod http_response_options;

pub use http_byte_stream::HttpByteStream;
pub use http_response::HttpResponse;
pub use http_response_interceptors::{
    HttpResponseInterceptor,
    HttpResponseInterceptors,
};
pub use http_response_meta::HttpResponseMeta;
pub(crate) use http_response_options::HttpResponseOptions;