rustc_incremental/persist/mod.rs
1//! When in incremental mode, this pass dumps out the dependency graph
2//! into the given directory. At the same time, it also hashes the
3//! various HIR nodes.
4
5mod data;
6mod dirty_clean;
7mod file_format;
8mod fs;
9mod load;
10mod save;
11mod work_product;
12
13pub use fs::{finalize_session_directory, in_incr_comp_dir, in_incr_comp_dir_sess};
14pub use load::{LoadResult, load_query_result_cache, setup_dep_graph};
15pub(crate) use save::save_dep_graph;
16pub use save::save_work_product_index;
17pub use work_product::copy_cgu_workproduct_to_incr_comp_cache_dir;