string_pipeline 0.13.0

A flexible, template-driven string transformation pipeline for Rust.
Documentation
[[bench]]
harness = false
name = "process"
path = "benches/process.rs"

[[bin]]
bench = false
name = "string-pipeline"
path = "src/main.rs"

[[bin]]
name = "string-pipeline-bench"
path = "src/bin/bench.rs"

[build-dependencies.clap]
features = ["derive", "cargo"]
version = "4.5.39"

[build-dependencies.clap_mangen]
version = "0.2.26"

[dependencies.clap]
features = ["derive"]
version = "4.5.39"

[dependencies.dashmap]
version = "6.1.0"

[dependencies.fast-strip-ansi]
version = "0.11"

[dependencies.memchr]
version = "2.7.4"

[dependencies.once_cell]
version = "1.21.3"

[dependencies.parking_lot]
version = "0.12.3"

[dependencies.pest]
version = "2.8.0"

[dependencies.pest_derive]
version = "2.8.0"

[dependencies.regex]
version = "1.11.1"

[dependencies.smallvec]
version = "1.15.0"

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

[dev-dependencies.tempfile]
version = "3.20.0"

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

[package]
authors = ["Luis M Alvarez"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["text-processing", "command-line-utilities"]
default-run = "string-pipeline"
description = "A flexible, template-driven string transformation pipeline for Rust."
documentation = "https://docs.rs/string_pipeline"
edition = "2024"
homepage = "https://github.com/lalvarezt/string_pipeline"
keywords = ["string", "pipeline", "template", "text", "transformation"]
license = "MIT"
name = "string_pipeline"
readme = "README.md"
repository = "https://github.com/lalvarezt/string_pipeline"
version = "0.13.0"

[profile.deb]
debug = 0
inherits = "release"

[profile.profiling]
debug = 2
inherits = "release"

[profile.release]
codegen-units = 1
lto = "fat"

[profile.staging]
debug = 2
inherits = "dev"
lto = false
opt-level = 3

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

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

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