#http-response #http-request

httpcodec

Encoders and decoders for HTTP/1.x messages based on bytecodec crate

15 releases

Uses old Rust 2015

0.2.3 Aug 18, 2019
0.2.2 May 19, 2018
0.1.10 May 2, 2018
0.1.6 Apr 30, 2018

#1782 in Parser implementations

Download history 2061/week @ 2026-02-17 2117/week @ 2026-02-24 2416/week @ 2026-03-03 2433/week @ 2026-03-10 2080/week @ 2026-03-17 1579/week @ 2026-03-24 1596/week @ 2026-03-31 1596/week @ 2026-04-07 1670/week @ 2026-04-14 1697/week @ 2026-04-21 1479/week @ 2026-04-28 2125/week @ 2026-05-05 3288/week @ 2026-05-12 3667/week @ 2026-05-19 6644/week @ 2026-05-26 4516/week @ 2026-06-02

18,419 downloads per month
Used in 19 crates (14 directly)

MIT license

85KB
2K SLoC

httpcodec

Documentation Build Status Code Coverage License: MIT

Encoders and decoders for HTTP/1.x messages based on bytecodec crate.

Documentation

Examples

Encodes a HTTP request message:

use bytecodec::Encode;
use bytecodec::bytes::BytesEncoder;
use bytecodec::io::IoEncodeExt;
use httpcodec::{BodyEncoder, HttpVersion, Method, Request, RequestEncoder, RequestTarget};

let request = Request::new(
    Method::new("GET").unwrap(),
    RequestTarget::new("/foo").unwrap(),
    HttpVersion::V1_1,
    b"barbaz",
);

let mut encoder = RequestEncoder::new(BodyEncoder::new(BytesEncoder::new()));
encoder.start_encoding(request).unwrap();

let mut buf = Vec::new();
encoder.encode_all(&mut buf).unwrap();
assert_eq!(buf, "GET /foo HTTP/1.1\r\nContent-Length: 6\r\n\r\nbarbaz".as_bytes());

Decodes a HTTP response message:

use bytecodec::bytes::RemainingBytesDecoder;
use bytecodec::io::IoDecodeExt;
use httpcodec::{BodyDecoder, HttpVersion, ResponseDecoder};

let mut decoder =
    ResponseDecoder::<BodyDecoder<RemainingBytesDecoder>>::default();

let input = b"HTTP/1.0 200 OK\r\nContent-Length: 6\r\n\r\nbarbaz";
let response = decoder.decode_exact(input.as_ref()).unwrap();

assert_eq!(response.http_version(), HttpVersion::V1_0);
assert_eq!(response.status_code().as_u16(), 200);
assert_eq!(response.reason_phrase().as_str(), "OK");
assert_eq!(
    response.header()
        .fields()
        .map(|f| (f.name().to_owned(), f.value().to_owned()))
        .collect::<Vec<_>>(),
    vec![("Content-Length".to_owned(), "6".to_owned())]
);
assert_eq!(response.body(), b"barbaz");

References

  • RFC 7230 Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing

Dependencies

~2MB
~48K SLoC