]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_incremental/src/persist/mod.rs
Rollup merge of #99772 - ehuss:reenable-submodule-archive, r=Mark-Simulacrum
[rust.git] / compiler / rustc_incremental / src / 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
5 mod data;
6 mod dirty_clean;
7 mod file_format;
8 mod fs;
9 mod load;
10 mod save;
11 mod work_product;
12
13 pub use fs::finalize_session_directory;
14 pub use fs::garbage_collect_session_directories;
15 pub use fs::in_incr_comp_dir;
16 pub use fs::in_incr_comp_dir_sess;
17 pub use fs::prepare_session_directory;
18 pub use load::load_query_result_cache;
19 pub use load::LoadResult;
20 pub use load::{load_dep_graph, DepGraphFuture};
21 pub use save::build_dep_graph;
22 pub use save::save_dep_graph;
23 pub use save::save_work_product_index;
24 pub use work_product::copy_cgu_workproduct_to_incr_comp_cache_dir;
25 pub use work_product::delete_workproduct_files;