• Home
Name Date Size #Lines LOC

..--

benches/06-Sep-2024-9275

src/06-Sep-2024-3,0472,272

tests/06-Sep-2024-3,6933,162

Android.bpD06-Sep-20241.6 KiB7167

Cargo.tomlD06-Sep-20241.2 KiB5346

Cargo.toml.origD06-Sep-2024679 3427

LICENSED06-Sep-202410.6 KiB202169

LICENSE-APACHED06-Sep-202410.6 KiB202169

LICENSE-MITD06-Sep-20241 KiB2116

METADATAD06-Sep-2024466 2120

MODULE_LICENSE_APACHE2D06-Sep-20240

OWNERSD06-Sep-202445 21

README.mdD06-Sep-20241.6 KiB4427

build.rsD06-Sep-20244.7 KiB16660

cargo_embargo.jsonD06-Sep-202420 43

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