whichtime-sys
whichtime-sys is the lower-level Rust parsing engine that powers the higher-level whichtime crate.
Use this crate when you want direct access to the engine itself, its locale-specific parser construction, or its lower-level types without the higher-level convenience wrapper.
Installation
[]
= "0.1"
When To Use whichtime-sys
- You want direct control over the underlying parser engine.
- You are building custom parser/refiner pipelines.
- You want the lower-level crate that
whichtimebuilds on top of.
If you just want the recommended Rust API for application code, use whichtime instead.
Example
use ;
Performance Notes
The engine uses a parser pipeline with fast token scanning, compile-time dictionaries, and compact component storage to keep parsing efficient. Benchmark and implementation details live in the repository guide.
Development Commands
Documentation
- Guide: https://transcodeworks.github.io/whichtime/
- API docs: https://docs.rs/whichtime-sys
- Recommended high-level crate: https://docs.rs/whichtime