[package]
edition = "2024"
name = "string_pipeline"
version = "0.13.4"
authors = ["Luis M Alvarez"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "string-pipeline"
description = "A flexible, template-driven string transformation pipeline for Rust."
homepage = "https://github.com/lalvarezt/string_pipeline"
documentation = "https://docs.rs/string_pipeline"
readme = "README.md"
keywords = [
"string",
"pipeline",
"template",
"text",
"transformation",
]
categories = [
"text-processing",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/lalvarezt/string_pipeline"
[lib]
name = "string_pipeline"
path = "src/lib.rs"
[[bin]]
name = "string-pipeline"
path = "src/main.rs"
bench = false
[[bin]]
name = "string-pipeline-bench"
path = "src/bin/bench.rs"
[[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"
[[bench]]
name = "process"
path = "benches/process.rs"
harness = false
[dependencies.clap]
version = "4.5.39"
features = ["derive"]
[dependencies.dashmap]
version = "6.1.0"
[dependencies.fast-strip-ansi]
version = "0.13"
[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"
[build-dependencies.clap]
version = "4.5.39"
features = [
"derive",
"cargo",
]
[build-dependencies.clap_mangen]
version = "0.2.26"
[profile.deb]
debug = 0
inherits = "release"
[profile.profiling]
debug = 2
inherits = "release"
[profile.release]
lto = "fat"
codegen-units = 1
[profile.staging]
opt-level = 3
lto = false
debug = 2
inherits = "dev"