]> git.lizzy.rs Git - rust.git/blob - src/librustc_incremental/lib.rs
change the format of the linked issue number
[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(core_intrinsics)]
26 #![feature(conservative_impl_trait)]
27 #![cfg_attr(stage0, feature(pub_restricted))]
28
29 extern crate graphviz;
30 #[macro_use] extern crate rustc;
31 extern crate rustc_data_structures;
32 extern crate serialize as rustc_serialize;
33
34 #[macro_use] extern crate log;
35 extern crate syntax;
36 extern crate syntax_pos;
37
38 mod assert_dep_graph;
39 mod calculate_svh;
40 mod persist;
41
42 pub use assert_dep_graph::assert_dep_graph;
43 pub use calculate_svh::compute_incremental_hashes_map;
44 pub use calculate_svh::IncrementalHashesMap;
45 pub use calculate_svh::IchHasher;
46 pub use persist::load_dep_graph;
47 pub use persist::save_dep_graph;
48 pub use persist::save_trans_partition;
49 pub use persist::save_work_products;
50 pub use persist::in_incr_comp_dir;
51 pub use persist::finalize_session_directory;
52 pub use persist::delete_workproduct_files;