1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "httparse" 15version = "1.8.0" 16authors = ["Sean McArthur <sean@seanmonstar.com>"] 17build = "build.rs" 18description = "A tiny, safe, speedy, zero-copy HTTP/1.x parser." 19documentation = "https://docs.rs/httparse" 20readme = "README.md" 21keywords = [ 22 "http", 23 "parser", 24 "no_std", 25] 26categories = [ 27 "network-programming", 28 "no-std", 29 "parser-implementations", 30 "web-programming", 31] 32license = "MIT/Apache-2.0" 33repository = "https://github.com/seanmonstar/httparse" 34 35[profile.bench] 36opt-level = 3 37lto = true 38codegen-units = 1 39 40[lib] 41bench = false 42 43[[bench]] 44name = "parse" 45harness = false 46 47[dev-dependencies.criterion] 48version = "0.3.5" 49 50[features] 51default = ["std"] 52std = [] 53