[package]
edition = "2021"
name = "url-parse-nginx"
version = "0.2.2"
build = false
exclude = [
"fuzz",
"nginx-reference",
"bench",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A faithful, 1-to-1 Rust port of nginx's URL path parser (ngx_http_parse_uri / ngx_http_parse_complex_uri) for origin-form paths."
readme = "README.md"
keywords = [
"nginx",
"url",
"uri",
"path",
"normalization",
]
categories = [
"parser-implementations",
"web-programming",
]
license = "BSD-2-Clause"
repository = "https://github.com/nojima/url-parse-nginx"
[features]
default = ["percent-encoding"]
percent-encoding = ["dep:percent-encoding"]
[lib]
name = "url_parse_nginx"
path = "src/lib.rs"
[dependencies.percent-encoding]
version = "2"
optional = true
default-features = false