43 releases (stable)

1.10.1 Mar 3, 2025
1.9.5 Sep 30, 2024
1.9.4 Jun 17, 2024
1.8.0 Aug 30, 2022
0.0.5 Mar 21, 2015

#3 in Web programming

Download history 6344624/week @ 2026-02-10 6193207/week @ 2026-02-17 6615095/week @ 2026-02-24 7919905/week @ 2026-03-03 8176392/week @ 2026-03-10 7693557/week @ 2026-03-17 7486686/week @ 2026-03-24 7581105/week @ 2026-03-31 8118331/week @ 2026-04-07 8273599/week @ 2026-04-14 8706981/week @ 2026-04-21 9087195/week @ 2026-04-28 10154955/week @ 2026-05-05 11125499/week @ 2026-05-12 10811613/week @ 2026-05-19 9389099/week @ 2026-05-26

42,978,014 downloads per month
Used in 50,140 crates (457 directly)

MIT/Apache

150KB
3K SLoC

httparse

crates.io Released API docs MIT licensed CI Discord chat

A push parser for the HTTP 1.x protocol. Avoids allocations. No copy. Fast.

Works with no_std, simply disable the std Cargo feature.

Changelog

Usage

let mut headers = [httparse::EMPTY_HEADER; 64];
let mut req = httparse::Request::new(&mut headers);

let buf = b"GET /index.html HTTP/1.1\r\nHost";
assert!(req.parse(buf)?.is_partial());

// a partial request, so we try again once we have more data

let buf = b"GET /index.html HTTP/1.1\r\nHost: example.domain\r\n\r\n";
assert!(req.parse(buf)?.is_complete());

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps