diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2021-03-02 22:38:49 +0100 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2021-03-30 18:09:59 +0200 |
| commit | 6bfaf3a9cb7b601e3c4ed2e661ed213b8bc4d639 (patch) | |
| tree | 31098236937df6c67a6bcddd15c0759c96debf3c /compiler/rustc_incremental/src/lib.rs | |
| parent | 16156fb2787f745e57504197bd7fe38b69c6cbea (diff) | |
| download | rust-6bfaf3a9cb7b601e3c4ed2e661ed213b8bc4d639.tar.gz rust-6bfaf3a9cb7b601e3c4ed2e661ed213b8bc4d639.zip | |
Stream the dep-graph to a file.
Diffstat (limited to 'compiler/rustc_incremental/src/lib.rs')
| -rw-r--r-- | compiler/rustc_incremental/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_incremental/src/lib.rs b/compiler/rustc_incremental/src/lib.rs index 95456c07b10..f089cbcfca6 100644 --- a/compiler/rustc_incremental/src/lib.rs +++ b/compiler/rustc_incremental/src/lib.rs @@ -14,7 +14,7 @@ mod assert_dep_graph; pub mod assert_module_sources; mod persist; -pub use assert_dep_graph::assert_dep_graph; +use assert_dep_graph::assert_dep_graph; pub use persist::copy_cgu_workproduct_to_incr_comp_cache_dir; pub use persist::delete_workproduct_files; pub use persist::finalize_session_directory; @@ -26,4 +26,4 @@ pub use persist::prepare_session_directory; pub use persist::save_dep_graph; pub use persist::save_work_product_index; pub use persist::LoadResult; -pub use persist::{load_dep_graph, DepGraphFuture}; +pub use persist::{build_dep_graph, load_dep_graph, DepGraphFuture}; |
