]> git.lizzy.rs Git - rust.git/blob - src/librustc_incremental/lib.rs
Number of filtered out tests in tests summary
[rust.git] / src / librustc_incremental / lib.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Support for serializing the dep-graph and reloading it.
12
13 #![crate_name = "rustc_incremental"]
14 #![unstable(feature = "rustc_private", issue = "27812")]
15 #![crate_type = "dylib"]
16 #![crate_type = "rlib"]
17 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
19       html_root_url = "https://doc.rust-lang.org/nightly/")]
20 #![deny(warnings)]
21
22 #![feature(rustc_private)]
23 #![feature(staged_api)]
24 #![feature(rand)]
25 #![feature(conservative_impl_trait)]
26 #![feature(sort_unstable)]
27
28 extern crate graphviz;
29 #[macro_use] extern crate rustc;
30 extern crate rustc_data_structures;
31 extern crate serialize as rustc_serialize;
32
33 #[macro_use] extern crate log;
34 extern crate syntax;
35 extern crate syntax_pos;
36
37 mod assert_dep_graph;
38 mod calculate_svh;
39 mod persist;
40
41 pub use assert_dep_graph::assert_dep_graph;
42 pub use calculate_svh::compute_incremental_hashes_map;
43 pub use calculate_svh::IncrementalHashesMap;
44 pub use calculate_svh::IchHasher;
45 pub use persist::load_dep_graph;
46 pub use persist::save_dep_graph;
47 pub use persist::save_trans_partition;
48 pub use persist::save_work_products;
49 pub use persist::in_incr_comp_dir;
50 pub use persist::finalize_session_directory;
51 pub use persist::delete_workproduct_files;