[package]
edition = "2024"
rust-version = "1.88"
name = "trimothy"
version = "0.9.2"
authors = ["Josh Stoik <josh@blobfolio.com>"]
build = false
exclude = [
".github",
".gitignore",
".righteous-sandbox.json",
"doc",
"justfile",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Traits for trimming slices, vecs, and strings."
readme = "README.md"
keywords = ["trim"]
categories = ["no-std"]
license = "WTFPL"
repository = "https://github.com/Blobfolio/trimothy"
[package.metadata.bashman]
name = "Trimothy"
[lib]
name = "trimothy"
path = "src/lib.rs"
[[bench]]
name = "fn_trim_mut"
path = "benches/fn_trim_mut.rs"
harness = false
[[bench]]
name = "fn_trim_normal"
path = "benches/fn_trim_normal.rs"
harness = false
[[bench]]
name = "fn_trim_slice"
path = "benches/fn_trim_slice.rs"
harness = false
[dev-dependencies.brunch]
version = "0.11.*"