Skip to main content

rustify_ml/
lib.rs

1/// rustify-ml library crate.
2///
3/// Exposes the core pipeline modules as a public API so that
4/// integration tests in tests/ can import them via `rustify_ml::`.
5///
6/// The binary entry point (src/main.rs) uses these same modules.
7pub mod analyzer;
8pub mod builder;
9pub mod generator;
10pub mod input;
11pub mod profiler;
12pub mod utils;