• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

benches/25-Apr-2025-211181

src/25-Apr-2025-3,9852,910

tests/25-Apr-2025-3,6933,162

.cargo-checksum.jsonD25-Apr-20251.5 KiB11

Android.bpD25-Apr-20252 KiB9185

Cargo.tomlD25-Apr-20251.6 KiB7465

LICENSED25-Apr-202510.6 KiB202169

LICENSE-APACHED25-Apr-202510.6 KiB202169

LICENSE-MITD25-Apr-20251 KiB2116

METADATAD25-Apr-2025388 1817

MODULE_LICENSE_APACHE2D25-Apr-20250

README.mdD25-Apr-20251.6 KiB4427

TEST_MAPPINGD25-Apr-2025129 1110

build.rsD25-Apr-20254.2 KiB13499

cargo_embargo.jsonD25-Apr-202547 54

clippy.tomlD25-Apr-202514 21

README.md

1# httparse
2
3[![crates.io](https://img.shields.io/crates/v/httparse.svg)](https://crates.io/crates/httparse)
4[![Released API docs](https://docs.rs/httparse/badge.svg)](https://docs.rs/httparse)
5[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE-MIT)
6[![CI](https://github.com/seanmonstar/httparse/workflows/CI/badge.svg)](https://github.com/seanmonstar/httparse/actions?query=workflow%3ACI)
7[![Discord chat][discord-badge]][discord-url]
8
9A push parser for the HTTP 1.x protocol. Avoids allocations. No copy. **Fast.**
10
11Works with `no_std`, simply disable the `std` Cargo feature.
12
13[Changelog](https://github.com/seanmonstar/httparse/releases)
14
15
16[discord-badge]: https://img.shields.io/discord/500028886025895936.svg?logo=discord
17[discord-url]: https://discord.gg/kkwpueZ
18
19## Usage
20
21```rust
22let mut headers = [httparse::EMPTY_HEADER; 64];
23let mut req = httparse::Request::new(&mut headers);
24
25let buf = b"GET /index.html HTTP/1.1\r\nHost";
26assert!(req.parse(buf)?.is_partial());
27
28// a partial request, so we try again once we have more data
29
30let buf = b"GET /index.html HTTP/1.1\r\nHost: example.domain\r\n\r\n";
31assert!(req.parse(buf)?.is_complete());
32```
33
34## License
35
36Licensed under either of
37
38- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or https://apache.org/licenses/LICENSE-2.0)
39- MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)
40
41### Contribution
42
43Unless 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.
44