pct 4.0.1

Percent-encoded strings for URL, URI, IRI, etc.
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.0"
name = "pct"
version = "4.0.1"
authors = [
    "Timothée Haudebourg <author@haudebourg.net>",
    "Matej Škvarč <matej.skvarc@senlab.io>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Percent-encoded strings for URL, URI, IRI, etc."
readme = "README.md"
keywords = [
    "percent",
    "percent-encoded",
    "encode",
    "decode",
    "string",
]
categories = [
    "web-programming",
    "encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mskvarc/pct/"

[features]
default = [
    "std",
    "memchr",
]
memchr = ["dep:memchr"]
simd = []
std = ["utf8-decode/std"]

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

[[example]]
name = "encode"
path = "examples/encode.rs"

[[example]]
name = "str"
path = "examples/str.rs"

[[example]]
name = "string"
path = "examples/string.rs"

[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false

[dependencies.memchr]
version = "2.8.0"
optional = true
default-features = false

[dependencies.utf8-decode]
version = "2.0.0"
default-features = false

[dev-dependencies.criterion]
version = "0.8.2"