ehttpd 0.13.1

A HTTP server nano-framework, which can be used to create custom HTTP server applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Provides (mostly) stack-allocating trait implementors over different underlying sources

mod data;
mod parse;
mod sink;
mod source;

pub use crate::bytes::data::Data;
pub use crate::bytes::parse::Parse;
pub use crate::bytes::sink::Sink;
pub use crate::bytes::source::Source;