[package]
edition = "2021"
name = "sal-text"
version = "0.1.0"
authors = ["PlanetFirst <info@incubaid.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SAL Text - Text processing and manipulation utilities with regex, templating, and normalization"
readme = "README.md"
license = "Apache-2.0"
repository = "https://git.threefold.info/herocode/sal"
[lib]
name = "sal_text"
path = "src/lib.rs"
[[test]]
name = "rhai_integration_tests"
path = "tests/rhai_integration_tests.rs"
[[test]]
name = "string_normalization_tests"
path = "tests/string_normalization_tests.rs"
[[test]]
name = "template_tests"
path = "tests/template_tests.rs"
[[test]]
name = "text_indentation_tests"
path = "tests/text_indentation_tests.rs"
[[test]]
name = "text_replacement_tests"
path = "tests/text_replacement_tests.rs"
[dependencies.regex]
version = "1.8.1"
[dependencies.rhai]
version = "1.12.0"
features = ["sync"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.tera]
version = "1.19.0"
[dev-dependencies.tempfile]
version = "3.5"