xitca-http 0.9.1

http library for xitca
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Copied from <https://github.com/hyperium/h2>
//! Copyright (c) 2017 h2 authors, licensed under MIT license.
//! See https://github.com/hyperium/h2/blob/master/LICENSE for details.

mod decoder;
mod encoder;
mod header;
mod huffman;
mod table;

pub(crate) use self::decoder::{Decoder, DecoderError};
pub(crate) use self::encoder::Encoder;
pub(crate) use self::header::Header;