http-request-target 0.1.0

HTTP request-target (RFC 9112) parser
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "http-request-target"
version = "0.1.0"
authors = ["Rob Ede <robjtede@icloud.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP request-target (RFC 9112) parser"
readme = "README.md"
keywords = [
    "http",
    "request",
    "target",
    "uri",
]
categories = ["parsing"]
license = "MIT"
repository = "https://github.com/robjtede/httpea"
resolver = "2"

[features]
default = ["simd"]
simd = ["winnow/simd"]
std = ["winnow/std"]

[lib]
name = "http_request_target"
path = "src/lib.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"

[[bench]]
name = "parse-request-target"
path = "benches/parse-request-target.rs"
harness = false

[dependencies.winnow]
version = "1"
features = ["binary"]
default-features = false

[dev-dependencies.divan]
version = "4"
package = "codspeed-divan-compat"

[dev-dependencies.http]
version = "0.2.9"

[lints.rust]
future-incompatible = "deny"
missing-debug-implementations = "warn"
missing-docs = "warn"
nonstandard-style = "deny"
rust-2018-idioms = "deny"