alux-http 0.3.0

Composable, interpreter-independent HTTP programs for meaning-first Rust design
Documentation
#![doc = include_str!("../README.md")]

extern crate self as alux_http;

// Read by the lists in `method` and `output`, and by the declarations `program` states of them.
#[macro_use]
mod vocabulary;

mod algebra;
mod answer;
mod chunks;
mod cookie;
mod header;
mod method;
mod named;
mod output;
mod parts;
mod path;
mod program;
mod server;
mod status;
mod with;

pub use algebra::*;
pub use alux_ext::macros::http;
pub use answer::*;
pub use chunks::*;
pub use cookie::*;
pub use header::*;
pub use method::*;
pub use named::*;
pub use output::*;
pub use parts::*;
pub use path::*;
pub use program::*;
pub use server::*;
pub use status::*;
pub use with::*;