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

..03-May-2022-

.github/H03-May-2022-132110

benches/H03-May-2022-123105

src/H03-May-2022-2,2811,731

tests/H03-May-2022-3,6943,163

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.gitignoreH A D29-Nov-197318 32

Cargo.tomlH A D01-Jan-19701 KiB3431

Cargo.toml.orig-cargoH A D29-Nov-1973599 2721

LICENSE-APACHEH A D29-Nov-197310.6 KiB202169

LICENSE-MITH A D29-Nov-19731 KiB2116

README.mdH A D29-Nov-19731.6 KiB4427

build.rsH A D29-Nov-19734.5 KiB16256

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; 16];
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