urldecoder 2.0.0

High performance URL batch decoder
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.1"
name = "urldecoder"
version = "2.0.0"
authors = ["lxl66566 <lxl66566@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High performance URL batch decoder"
homepage = "https://github.com/lxl66566/urldecoder"
documentation = "https://github.com/lxl66566/urldecoder"
readme = "README.md"
keywords = [
    "url",
    "decode",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/lxl66566/urldecoder"

[features]
bin = [
    "rayon",
    "glob",
    "clap",
]
default = ["safe"]
safe = []
verbose-log = []

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

[[bin]]
name = "urldecoder"
path = "src/main.rs"
required-features = ["bin"]

[[bench]]
name = "multi_files"
path = "benches/multi_files.rs"
harness = false
required-features = ["bin"]

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

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

[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true

[dependencies.glob]
version = "0.3"
optional = true

[dependencies.memchr]
version = "2.8.0"

[dependencies.memmap2]
version = "0.9.10"

[dependencies.rayon]
version = "1"
optional = true

[dependencies.simdutf8]
version = "0.1.5"

[dependencies.snafu]
version = "0.9"

[dependencies.tempfile]
version = "3.8"

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

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true