Adding httparse library as a dependency

Run this command in a terminal, in your project's directory:

cargo add httparse

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

httparse = "1.10.1"

The httparse library will be automatically available globally. Read the httparse library documentation.

Back to the crate overview.