]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/lib.rs
Incorporate a stray test
[rust.git] / src / librustc_data_structures / lib.rs
1 // Copyright 2015 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 //! Various data structures used by the Rust compiler. The intention
12 //! is that code in here should be not be *specific* to rustc, so that
13 //! it can be easily unit tested and so forth.
14 //!
15 //! # Note
16 //!
17 //! This API is completely unstable and subject to change.
18
19 #![deny(bare_trait_objects)]
20
21 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
22       html_favicon_url = "https://www.rust-lang.org/favicon.ico",
23       html_root_url = "https://doc.rust-lang.org/nightly/")]
24
25 #![feature(collections_range)]
26 #![feature(unboxed_closures)]
27 #![feature(fn_traits)]
28 #![feature(unsize)]
29 #![feature(specialization)]
30 #![feature(optin_builtin_traits)]
31 #![feature(macro_vis_matcher)]
32 #![feature(allow_internal_unstable)]
33 #![feature(vec_resize_with)]
34
35 #![cfg_attr(unix, feature(libc))]
36 #![cfg_attr(test, feature(test))]
37
38 extern crate core;
39 extern crate ena;
40 #[macro_use]
41 extern crate log;
42 extern crate serialize as rustc_serialize; // used by deriving
43 #[cfg(unix)]
44 extern crate libc;
45 extern crate parking_lot;
46 #[macro_use]
47 extern crate cfg_if;
48 extern crate stable_deref_trait;
49 extern crate rustc_rayon as rayon;
50 extern crate rustc_rayon_core as rayon_core;
51 extern crate rustc_hash;
52
53 // See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
54 #[allow(unused_extern_crates)]
55 extern crate rustc_cratesio_shim;
56
57 pub use rustc_serialize::hex::ToHex;
58
59 pub mod accumulate_vec;
60 pub mod array_vec;
61 pub mod base_n;
62 pub mod bitslice;
63 pub mod bitvec;
64 pub mod flock;
65 pub mod fx;
66 pub mod graph;
67 pub mod indexed_set;
68 pub mod indexed_vec;
69 pub mod obligation_forest;
70 pub mod owning_ref;
71 pub mod ptr_key;
72 pub mod sip128;
73 pub mod small_vec;
74 pub mod snapshot_map;
75 pub use ena::snapshot_vec;
76 pub mod sorted_map;
77 pub mod stable_hasher;
78 pub mod sync;
79 pub mod tiny_list;
80 pub mod transitive_relation;
81 pub mod tuple_slice;
82 pub use ena::unify;
83 pub mod work_queue;
84
85 pub struct OnDrop<F: Fn()>(pub F);
86
87 impl<F: Fn()> OnDrop<F> {
88       /// Forgets the function which prevents it from running.
89       /// Ensure that the function owns no memory, otherwise it will be leaked.
90       pub fn disable(self) {
91             std::mem::forget(self);
92       }
93 }
94
95 impl<F: Fn()> Drop for OnDrop<F> {
96       fn drop(&mut self) {
97             (self.0)();
98       }
99 }
100
101 // See comments in src/librustc/lib.rs
102 #[doc(hidden)]
103 pub fn __noop_fix_for_27438() {}