1
Fork 0
rust/compiler/rustc_incremental/src/persist/mod.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
590 B
Rust
Raw Normal View History

//! When in incremental mode, this pass dumps out the dependency graph
//! into the given directory. At the same time, it also hashes the
//! various HIR nodes.
mod data;
mod dirty_clean;
mod file_format;
mod fs;
mod load;
mod save;
mod work_product;
2019-02-08 21:16:35 +09:00
pub use fs::finalize_session_directory;
pub use fs::in_incr_comp_dir;
pub use fs::in_incr_comp_dir_sess;
pub use load::load_query_result_cache;
pub use load::setup_dep_graph;
2019-02-08 21:16:35 +09:00
pub use load::LoadResult;
pub use save::save_dep_graph;
pub use save::save_work_product_index;
pub use work_product::copy_cgu_workproduct_to_incr_comp_cache_dir;