]> git.lizzy.rs Git - rust.git/blob - src/librustc_incremental/lib.rs
rustdoc: pretty-print Unevaluated expressions in types.
[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 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
14       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
15       html_root_url = "https://doc.rust-lang.org/nightly/")]
16 #![deny(warnings)]
17
18 #![feature(rand)]
19 #![feature(conservative_impl_trait)]
20
21 extern crate graphviz;
22 #[macro_use] extern crate rustc;
23 extern crate rustc_data_structures;
24 extern crate serialize as rustc_serialize;
25
26 #[macro_use] extern crate log;
27 extern crate syntax;
28 extern crate syntax_pos;
29
30 mod assert_dep_graph;
31 mod calculate_svh;
32 mod persist;
33
34 pub use assert_dep_graph::assert_dep_graph;
35 pub use calculate_svh::compute_incremental_hashes_map;
36 pub use calculate_svh::IncrementalHashesMap;
37 pub use calculate_svh::IchHasher;
38 pub use persist::load_dep_graph;
39 pub use persist::save_dep_graph;
40 pub use persist::save_trans_partition;
41 pub use persist::save_work_products;
42 pub use persist::in_incr_comp_dir;
43 pub use persist::finalize_session_directory;