81c805f07e
Removes unused `flatten_tuple` function from optimizer utilities. The functionality was moved to the `Folder` struct, making it more contextually appropriate. This change streamlines the utility module and improves code organization.
12 lines
263 B
Rust
12 lines
263 B
Rust
pub mod engine;
|
|
pub mod folder;
|
|
pub mod inliner;
|
|
pub mod substitution_map;
|
|
pub mod utils;
|
|
|
|
pub use engine::Optimizer;
|
|
pub use folder::Folder;
|
|
pub use inliner::Inliner;
|
|
pub use substitution_map::SubstitutionMap;
|
|
pub use utils::{PathTracker, UsageInfo};
|