File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -126,10 +126,10 @@ pub mod lint;
126
126
127
127
pub mod util {
128
128
pub use rustc_back:: fs;
129
+ pub use rustc_back:: sha2;
129
130
130
131
pub mod common;
131
132
pub mod ppaux;
132
- pub mod sha2;
133
133
pub mod nodemap;
134
134
}
135
135
Original file line number Diff line number Diff line change 32
32
html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
33
33
html_root_url = "http://doc.rust-lang.org/" ) ]
34
34
35
- #![ feature( globs) ]
36
- #![ feature( phase) ]
35
+ #![ feature( globs, phase, macro_rules) ]
37
36
#![ allow( unused_attribute) ] // NOTE: remove after stage0
38
37
39
38
#[ phase( plugin, link) ]
40
39
extern crate log;
41
40
extern crate syntax;
42
41
extern crate libc;
43
42
extern crate flate;
43
+ extern crate serialize;
44
44
45
45
pub mod abi;
46
46
pub mod archive;
@@ -49,6 +49,7 @@ pub mod fs;
49
49
pub mod mips;
50
50
pub mod mipsel;
51
51
pub mod rpath;
52
+ pub mod sha2;
52
53
pub mod svh;
53
54
pub mod target_strs;
54
55
pub mod x86;
Original file line number Diff line number Diff line change 12
12
//! use. This implementation is not intended for external use or for any use where security is
13
13
//! important.
14
14
15
+ #![ allow( deprecated) ] // to_be32
16
+
15
17
use std:: iter:: range_step;
16
18
use std:: num:: Zero ;
17
19
use std:: slice:: bytes:: { MutableByteVector , copy_memory} ;
You can’t perform that action at this time.
0 commit comments