File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 6c35d513cea468b30759b4f78becf28f11a123c0
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: afbcbbc77ffc6b10053bc543daf7d2e05d68cc01
5
- refs/heads/try: 46266bd60651b75e476115ec97a4ab0c4f9f462a
5
+ refs/heads/try: c199790077587e88445b0244c34e0a4a526d6498
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
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