Skip to main content

latexml/
util.rs

1/// Engine preset helpers used by both the production
2/// `latexmlmath_oxide` binary and by the test harness. Always
3/// compiled — no test-only dependencies.
4pub mod preset;
5
6/// Integration-test harness. Gated behind the `test-utils` feature
7/// (default on) so the distribution build (`cargo build
8/// --no-default-features --profile maxperf --bin latexml_oxide`)
9/// drops `glob` / `phf` from the dependency graph (audit DEP-02).
10#[cfg(feature = "test-utils")]
11#[macro_use]
12pub mod test;