Modules
The helpers4 crate is organised in 28 modules. Each module is a Cargo feature of the same name, and all of them are enabled by default (cargo add helpers4).
Install only what you use
Section titled “Install only what you use”Turn the default features off and name the modules you want:
or in Cargo.toml:
Modules
Section titled “Modules”| Module | Cargo feature | What it covers | Items |
|---|---|---|---|
ansi | ansi | ANSI escape sequences: remove them from captured output and build styled text. | 5 |
array | array | Helpers for slices and Vecs that the standard library does not provide. | 13 |
bytes | bytes | Helpers for byte slices and sizes that the standard library does not provide. | 10 |
cache | cache | Caches and stores whose entries expire. | 2 |
ci | ci | Detecting CI environments and reporting pipeline status. | 7 |
color | color | Colors without a dependency: parsing, hex, HSL, blending and WCAG contrast. | 6 |
commit | commit | Conventional Commits: parse a message, decide the version bump, validate. | 6 |
date | date | Calendar dates without time zones: validation, ISO 8601 text, weekdays and day arithmetic. | 5 |
duration | duration | Parsing and formatting of durations as short human-readable strings (1h30m). | 3 |
env | env | Dotenv (.env) helpers working on plain text: no file or process-environment access, so they are deterministic and easy to test. | 5 |
fs | fs | File-system helpers: safe writes, missing-file-as-None, listing and path checks. | 5 |
function | function | Helpers around functions: composition, memoization, retrying and rate limiting. | 6 |
future | future | Runtime-neutral helpers for Futures, built on the standard library only. | 5 |
hex | hex | Hexadecimal encoding and decoding with typed errors. | 6 |
http | http | HTTP header value helpers on plain text: no dependency on an HTTP crate. | 1 |
iter | iter | Helpers for any Iterator, not only slices: work on a lazy, single-use or unbounded source. | 3 |
license | license | SPDX license identifiers and expressions: look a license up, parse MIT OR Apache-2.0, check it against a policy, write a source header. | 7 |
map | map | Helpers for HashMap that the standard library does not provide. | 3 |
markdown | markdown | Helpers for writing Markdown safely: escaping, links, code, quotes, tables and heading anchors. | 7 |
net | net | Network helpers on std::net and plain text: no I/O, no resolution. | 3 |
number | number | Numeric helpers that the standard library does not provide. | 7 |
secret | secret | Keeping secrets out of logs: a wrapper that never prints its value, redaction, masking and credential detection. | 8 |
set | set | Helpers for HashSet that the standard library does not provide. | 7 |
string | string | String manipulation and formatting helpers. | 14 |
time | time | Time helpers. | 3 |
url | url | URLs without a dependency: percent-encoding, query strings, a parser and reference resolution. | 8 |
validate | validate | Shape checks for common user-facing formats: pragmatic subsets that catch real mistakes, not full grammars. | 3 |
version | version | Semantic Versioning 2.0.0: parsing, precedence, bumps and Cargo-style requirements. | 5 |
Import through the module path (helpers4::string::capitalize): names can repeat across modules on purpose, so never glob-import a module.
Documented version: 0.0.6. Minimum supported Rust version: 1.85.
