[package]
edition = "2021"
rust-version = "1.81"
name = "encodeurl"
version = "0.1.0"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Encode a URL to a percent-encoded form, leaving already-encoded sequences (valid %XX escapes) intact. A faithful port of the `encodeurl` npm package. Safe, zero dependencies, no_std."
homepage = "https://github.com/trananhtung/encodeurl"
documentation = "https://docs.rs/encodeurl"
readme = "README.md"
keywords = [
"url",
"encode",
"percent-encoding",
"uri",
"escape",
]
categories = [
"web-programming",
"encoding",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/encodeurl"
[lib]
name = "encodeurl"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"