Skip to main content

io_http/
lib.rs

1#![no_std]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![doc = include_str!("../README.md")]
4
5extern crate alloc;
6#[cfg(feature = "client")]
7extern crate std;
8
9#[cfg(feature = "client")]
10pub mod client;
11pub mod coroutine;
12pub mod rfc1945;
13pub mod rfc6750;
14pub mod rfc7617;
15pub mod rfc8615;
16pub mod rfc9110;
17pub mod rfc9112;
18pub mod sse;