File tree Expand file tree Collapse file tree 19 files changed +53
-6
lines changed Expand file tree Collapse file tree 19 files changed +53
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
- refs/heads/try2: a37ca8ce385ce06d8175e56486efe544b67488e3
8
+ refs/heads/try2: e49c30a89a2f7fd4277bdbf5722a09b1d5700507
9
9
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ li {list-style-type: none; }
30
30
31
31
* [ The ` arena ` allocation library] ( arena/index.html )
32
32
* [ The ` collections ` library] ( collections/index.html )
33
- * [ The ` extra ` library of extra stuff] ( extra/index.html )
34
33
* [ The ` flate ` compression library] ( flate/index.html )
35
34
* [ The ` fourcc ` four-character code library] ( fourcc/index.html )
36
35
* [ The ` getopts ` argument parsing library] ( getopts/index.html )
Original file line number Diff line number Diff line change 19
19
#[ crate_type = "rlib" ] ;
20
20
#[ crate_type = "dylib" ] ;
21
21
#[ license = "MIT/ASL2" ] ;
22
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
23
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
24
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
22
25
#[ allow( missing_doc) ] ;
23
26
#[ feature( managed_boxes) ] ;
24
27
#[ allow( deprecated_owned_vector) ] ;
Original file line number Diff line number Diff line change 16
16
#[ crate_type = "rlib" ] ;
17
17
#[ crate_type = "dylib" ] ;
18
18
#[ license = "MIT/ASL2" ] ;
19
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
20
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
21
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
19
22
20
23
#[ feature( macro_rules, managed_boxes, default_type_params) ] ;
21
24
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ Simple compression
18
18
#[ crate_type = "rlib" ] ;
19
19
#[ crate_type = "dylib" ] ;
20
20
#[ license = "MIT/ASL2" ] ;
21
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
22
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
23
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
21
24
22
25
use std:: libc:: { c_void, size_t, c_int} ;
23
26
use std:: libc;
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ fn main() {
43
43
#[ crate_type = "rlib" ] ;
44
44
#[ crate_type = "dylib" ] ;
45
45
#[ license = "MIT/ASL2" ] ;
46
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
47
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
48
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
46
49
47
50
#[ feature( macro_registrar, managed_boxes) ] ;
48
51
Original file line number Diff line number Diff line change 80
80
#[ crate_type = "rlib" ] ;
81
81
#[ crate_type = "dylib" ] ;
82
82
#[ license = "MIT/ASL2" ] ;
83
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
84
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
85
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
83
86
#[ allow( missing_doc) ] ;
84
87
#[ allow( deprecated_owned_vector) ] ;
85
88
Original file line number Diff line number Diff line change 27
27
#[ crate_type = "rlib" ] ;
28
28
#[ crate_type = "dylib" ] ;
29
29
#[ license = "MIT/ASL2" ] ;
30
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
31
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
32
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
30
33
#[ allow( deprecated_owned_vector) ] ;
31
34
32
35
use std:: cell:: Cell ;
Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ fn main() {
40
40
#[ crate_type = "rlib" ] ;
41
41
#[ crate_type = "dylib" ] ;
42
42
#[ license = "MIT/ASL2" ] ;
43
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
44
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
45
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
43
46
44
47
#[ feature( macro_registrar, managed_boxes) ] ;
45
48
Original file line number Diff line number Diff line change 14
14
#[ crate_type = "rlib" ] ;
15
15
#[ crate_type = "dylib" ] ;
16
16
#[ license = "MIT/ASL2" ] ;
17
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
18
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
19
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
17
20
#[ allow( deprecated_owned_vector) ] ;
18
21
19
22
extern crate rand;
Original file line number Diff line number Diff line change 32
32
#[ crate_type = "rlib" ] ;
33
33
#[ crate_type = "dylib" ] ;
34
34
#[ license = "MIT/ASL2" ] ;
35
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
36
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
37
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
35
38
36
39
use std:: char;
37
40
use std:: cmp;
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ Core encoding and decoding interfaces.
18
18
#[ crate_type = "rlib" ] ;
19
19
#[ crate_type = "dylib" ] ;
20
20
#[ license = "MIT/ASL2" ] ;
21
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
22
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
23
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
21
24
#[ allow( missing_doc) ] ;
22
25
#[ forbid( non_camel_case_types) ] ;
23
26
#[ feature( macro_rules, managed_boxes, default_type_params) ] ;
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ extern "C" {
120
120
// of the macro. This is all copy/pasted directly from the header file with the
121
121
// definition of _Unwind_GetIP.
122
122
#[ cfg( target_os = "android" ) ]
123
- #[ cfg( target_os = "linux" , target_os = "arm" ) ]
123
+ #[ cfg( target_os = "linux" , target_arch = "arm" ) ]
124
124
pub unsafe fn _Unwind_GetIP ( ctx : * _Unwind_Context ) -> libc:: uintptr_t {
125
125
#[ repr( C ) ]
126
126
enum _Unwind_VRS_Result {
@@ -162,9 +162,9 @@ pub unsafe fn _Unwind_GetIP(ctx: *_Unwind_Context) -> libc::uintptr_t {
162
162
( val & !1 ) as libc:: uintptr_t
163
163
}
164
164
165
- // This function also doesn't exist on android, so make it a no-op
165
+ // This function also doesn't exist on android or arm/linux , so make it a no-op
166
166
#[ cfg( target_os = "android" ) ]
167
- #[ cfg( target_os = "linux" , target_os = "arm" ) ]
168
- pub unsafe fn _Unwind_FindEnclosingFunction ( pc : * libc:: c_void ) -> * libc:: c_void {
167
+ #[ cfg( target_os = "linux" , target_arch = "arm" ) ]
168
+ pub unsafe fn _Unwind_FindEnclosingFunction ( pc : * libc:: c_void ) -> * libc:: c_void {
169
169
pc
170
170
}
Original file line number Diff line number Diff line change 16
16
#[ crate_type = "rlib" ] ;
17
17
#[ crate_type = "dylib" ] ;
18
18
#[ license = "MIT/ASL2" ] ;
19
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
20
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
21
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
19
22
20
23
#[ allow( deprecated_owned_vector) ] ;
21
24
Original file line number Diff line number Diff line change 28
28
#[ license = "MIT/ASL2" ] ;
29
29
#[ crate_type = "rlib" ] ;
30
30
#[ crate_type = "dylib" ] ;
31
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
32
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
33
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
31
34
32
35
#[ feature( asm, macro_rules) ] ;
33
36
#[ allow( deprecated_owned_vector) ] ;
Original file line number Diff line number Diff line change 12
12
#[ crate_type = "rlib" ] ;
13
13
#[ crate_type = "dylib" ] ;
14
14
#[ license = "MIT/ASL2" ] ;
15
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
16
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
17
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
15
18
16
19
#[ allow( missing_doc) ] ;
17
20
#[ allow( deprecated_owned_vector) ] ;
Original file line number Diff line number Diff line change 14
14
#[ crate_type = "rlib" ] ;
15
15
#[ crate_type = "dylib" ] ;
16
16
#[ license = "MIT/ASL2" ] ;
17
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
18
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
19
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
17
20
#[ feature( default_type_params) ] ;
18
21
#[ allow( deprecated_owned_vector) ] ;
19
22
Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ Examples of string representations:
58
58
#[ crate_type = "rlib" ] ;
59
59
#[ crate_type = "dylib" ] ;
60
60
#[ license = "MIT/ASL2" ] ;
61
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
62
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
63
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
61
64
62
65
#[ allow( deprecated_owned_vector) ] ;
63
66
Original file line number Diff line number Diff line change 12
12
#[ crate_type = "rlib" ] ;
13
13
#[ crate_type = "dylib" ] ;
14
14
#[ license = "MIT/ASL2" ] ;
15
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
16
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
17
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
15
18
#[ allow( deprecated_owned_vector, visible_private_types) ] ;
16
19
17
20
extern crate serialize;
You can’t perform that action at this time.
0 commit comments