File tree Expand file tree Collapse file tree 37 files changed +37
-114
lines changed Expand file tree Collapse file tree 37 files changed +37
-114
lines changed Original file line number Diff line number Diff line change 55
55
reason = "this library is unlikely to be stabilized in its current \
56
56
form or name",
57
57
issue = "27783" ) ]
58
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
59
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
60
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
58
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
61
59
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ,
62
60
test( no_crate_inject, attr( allow( unused_variables) , deny( warnings) ) ) ) ]
63
61
#![ no_std]
Original file line number Diff line number Diff line change 8
8
//! This crate implements `TypedArena`, a simple arena that can only hold
9
9
//! objects of a single type.
10
10
11
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
12
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
13
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
11
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
14
12
test( no_crate_inject, attr( deny( warnings) ) ) ) ]
15
13
16
14
#![ feature( alloc) ]
Original file line number Diff line number Diff line change 51
51
#![ cfg( not( test) ) ]
52
52
53
53
#![ stable( feature = "core" , since = "1.6.0" ) ]
54
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
55
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
56
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
54
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
57
55
html_playground_url = "https://play.rust-lang.org/" ,
58
56
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ,
59
57
test( no_crate_inject, attr( deny( warnings) ) ) ,
Original file line number Diff line number Diff line change 4
4
//! Parsing does not happen at runtime: structures of `std::fmt::rt` are
5
5
//! generated instead.
6
6
7
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
8
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
9
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
7
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
10
8
html_playground_url = "https://play.rust-lang.org/" ,
11
9
test( attr( deny( warnings) ) ) ) ]
12
10
Original file line number Diff line number Diff line change 271
271
//!
272
272
//! * [DOT language](http://www.graphviz.org/doc/info/lang.html)
273
273
274
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
275
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
276
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
274
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
277
275
test( attr( allow( unused_variables) , deny( warnings) ) ) ) ]
278
276
279
277
#![ deny( rust_2018_idioms) ]
Original file line number Diff line number Diff line change 5
5
6
6
#![ no_std]
7
7
#![ unstable( feature = "panic_abort" , issue = "32837" ) ]
8
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
9
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
10
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
8
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
11
9
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ) ]
12
10
#![ panic_runtime]
13
11
Original file line number Diff line number Diff line change 14
14
15
15
#![ no_std]
16
16
#![ unstable( feature = "panic_unwind" , issue = "32837" ) ]
17
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
18
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
19
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
17
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
20
18
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ) ]
21
19
22
20
#![ feature( allocator_api) ]
Original file line number Diff line number Diff line change 9
9
10
10
#![ stable( feature = "proc_macro_lib" , since = "1.15.0" ) ]
11
11
#![ deny( missing_docs) ]
12
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
13
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
14
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
12
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
15
13
html_playground_url = "https://play.rust-lang.org/" ,
16
14
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ,
17
15
test( no_crate_inject, attr( deny( warnings) ) ) ,
Original file line number Diff line number Diff line change 26
26
//!
27
27
//! This API is completely unstable and subject to change.
28
28
29
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
30
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
31
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
29
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
32
30
33
31
#![ deny( rust_2018_idioms) ]
34
32
#![ allow( explicit_outlives_requirements) ]
Original file line number Diff line number Diff line change 30
30
//!
31
31
//! This API is completely unstable and subject to change.
32
32
33
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
34
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
35
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
33
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
36
34
#![ forbid( unsafe_code) ]
37
35
#![ deny( rust_2018_idioms) ]
38
36
Original file line number Diff line number Diff line change 1
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
3
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
1
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
4
2
5
3
#![ allow( non_camel_case_types) ]
6
4
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! This API is completely unstable and subject to change.
6
6
7
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
8
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
9
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
7
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
10
8
11
9
#![ feature( box_patterns) ]
12
10
#![ feature( box_syntax) ]
Original file line number Diff line number Diff line change 1
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
3
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
1
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
4
2
5
3
#![ feature( box_patterns) ]
6
4
#![ feature( box_syntax) ]
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! This API is completely unstable and subject to change.
6
6
7
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
8
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
9
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
7
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
10
8
#![ deny( warnings) ]
11
9
12
10
#![ feature( box_syntax) ]
Original file line number Diff line number Diff line change 2
2
//!
3
3
//! This API is completely unstable and subject to change.
4
4
5
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
6
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
7
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
5
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
8
6
9
7
#![ feature( box_patterns) ]
10
8
#![ feature( box_syntax) ]
Original file line number Diff line number Diff line change 6
6
//!
7
7
//! This API is completely unstable and subject to change.
8
8
9
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
10
- html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
11
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
9
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
12
10
13
11
#![ feature( in_band_lifetimes) ]
14
12
#![ feature( unboxed_closures) ]
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! This API is completely unstable and subject to change.
6
6
7
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
8
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
9
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
7
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
10
8
11
9
#![ feature( box_syntax) ]
12
10
#![ cfg_attr( unix, feature( libc) ) ]
Original file line number Diff line number Diff line change 1
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
3
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
1
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
4
2
5
3
#![ feature( custom_attribute) ]
6
4
#![ allow( unused_attributes) ]
Original file line number Diff line number Diff line change 1
1
//! Support for serializing the dep-graph and reloading it.
2
2
3
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
4
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
5
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
3
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
6
4
7
5
#![ feature( nll) ]
8
6
#![ feature( specialization) ]
Original file line number Diff line number Diff line change 9
9
//!
10
10
//! This API is completely unstable and subject to change.
11
11
12
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
13
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
14
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
12
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
15
13
16
14
#![ cfg_attr( test, feature( test) ) ]
17
15
#![ feature( box_patterns) ]
Original file line number Diff line number Diff line change 1
1
#![ deny( rust_2018_idioms) ]
2
2
#![ feature( static_nobundle) ]
3
3
4
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
5
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
6
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
4
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
7
5
8
6
// See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
9
7
#[ allow( unused_extern_crates) ]
Original file line number Diff line number Diff line change 1
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
3
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
1
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
4
2
5
3
#![ feature( box_patterns) ]
6
4
#![ feature( libc) ]
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! This API is completely unstable and subject to change.
6
6
7
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
8
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
9
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
7
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
10
8
11
9
#![ feature( nll) ]
12
10
#![ feature( rustc_diagnostic_macros) ]
Original file line number Diff line number Diff line change 50
50
//! See the [`plugin` feature](../unstable-book/language-features/plugin.html) of
51
51
//! the Unstable Book for more examples.
52
52
53
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
54
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
55
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
53
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
56
54
57
55
#![ feature( rustc_diagnostic_macros) ]
58
56
Original file line number Diff line number Diff line change 1
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
3
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
1
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
4
2
5
3
#![ deny( rust_2018_idioms) ]
6
4
Original file line number Diff line number Diff line change 1
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
3
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
1
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
4
2
5
3
#![ feature( crate_visibility_modifier) ]
6
4
#![ feature( label_break_value) ]
Original file line number Diff line number Diff line change 1
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
3
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
1
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
4
2
#![ feature( custom_attribute) ]
5
3
#![ feature( nll) ]
6
4
#![ allow( unused_attributes) ]
Original file line number Diff line number Diff line change 7
7
//! more 'stuff' here in the future. It does not have a dependency on
8
8
//! LLVM.
9
9
10
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
11
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
12
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
10
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
13
11
14
12
#![ feature( box_syntax) ]
15
13
#![ feature( nll) ]
Original file line number Diff line number Diff line change @@ -55,9 +55,7 @@ This API is completely unstable and subject to change.
55
55
56
56
*/
57
57
58
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
59
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
60
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
58
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
61
59
62
60
#![ allow( non_camel_case_types) ]
63
61
Original file line number Diff line number Diff line change 1
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
3
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
1
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
4
2
html_playground_url = "https://play.rust-lang.org/" ) ]
5
3
6
4
#![ feature( bind_by_move_pattern_guards) ]
Original file line number Diff line number Diff line change 4
4
Core encoding and decoding interfaces.
5
5
*/
6
6
7
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
8
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
9
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
7
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
10
8
html_playground_url = "https://play.rust-lang.org/" ,
11
9
test( attr( allow( unused_variables) , deny( warnings) ) ) ) ]
12
10
Original file line number Diff line number Diff line change 196
196
//! [primitive types]: ../book/ch03-02-data-types.html
197
197
198
198
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
199
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
200
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
201
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
199
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
202
200
html_playground_url = "https://play.rust-lang.org/" ,
203
201
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/" ,
204
202
test( no_crate_inject, attr( deny( warnings) ) ) ,
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! This API is completely unstable and subject to change.
6
6
7
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
8
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
9
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
7
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
10
8
test( attr( deny( warnings) ) ) ) ]
11
9
12
10
#![ deny( rust_2018_idioms) ]
Original file line number Diff line number Diff line change 1
1
//! Syntax extensions in the Rust compiler.
2
2
3
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
4
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
5
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
3
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
6
4
7
5
#![ deny( rust_2018_idioms) ]
8
6
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! This API is completely unstable and subject to change.
6
6
7
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
8
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
9
- html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
7
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
10
8
11
9
#![ deny( rust_2018_idioms) ]
12
10
Original file line number Diff line number Diff line change 30
30
//! [win]: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682010%28v=vs.85%29.aspx
31
31
//! [ti]: https://en.wikipedia.org/wiki/Terminfo
32
32
33
- #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
34
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
35
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
33
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ,
36
34
html_playground_url = "https://play.rust-lang.org/" ,
37
35
test( attr( deny( warnings) ) ) ) ]
38
36
#![ deny( missing_docs) ]
Original file line number Diff line number Diff line change 20
20
#![ deny( rust_2018_idioms) ]
21
21
#![ crate_name = "test" ]
22
22
#![ unstable( feature = "test" , issue = "27812" ) ]
23
- #![ doc(
24
- html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
25
- html_favicon_url = "https://doc.rust-lang.org/favicon.ico" ,
26
- html_root_url = "https://doc.rust-lang.org/nightly/" ,
27
- test( attr( deny( warnings) ) )
28
- ) ]
23
+ #![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" , test( attr( deny( warnings) ) ) ) ]
29
24
#![ feature( asm) ]
30
25
#![ feature( fnbox) ]
31
26
#![ cfg_attr( any( unix, target_os = "cloudabi" ) , feature( libc, rustc_private) ) ]
You can’t perform that action at this time.
0 commit comments