Skip to content

Commit 7fdbe69

Browse files
committed
rustdoc: Added issue_tracker_base_url annotations to crates
1 parent 9698e8f commit 7fdbe69

File tree

30 files changed

+56
-26
lines changed

30 files changed

+56
-26
lines changed

src/liballoc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
7070
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
7171
html_root_url = "https://doc.rust-lang.org/nightly/",
72+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
7273
test(no_crate_inject))]
7374
#![no_std]
7475
#![cfg_attr(not(stage0), needs_allocator)]

src/libarena/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
#![crate_type = "dylib"]
2929
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
3030
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
31-
html_root_url = "https://doc.rust-lang.org/nightly/")]
31+
html_root_url = "https://doc.rust-lang.org/nightly/",
32+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
3233

3334
#![feature(alloc)]
3435
#![feature(box_syntax)]

src/libcollections/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
2727
html_root_url = "https://doc.rust-lang.org/nightly/",
2828
html_playground_url = "https://play.rust-lang.org/",
29+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
2930
test(no_crate_inject))]
3031

3132
#![allow(trivial_casts)]

src/libcore/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@
5858
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
5959
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
6060
html_root_url = "https://doc.rust-lang.org/nightly/",
61-
html_playground_url = "https://play.rust-lang.org/")]
61+
html_playground_url = "https://play.rust-lang.org/",
62+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
6263
#![doc(test(no_crate_inject))]
6364

6465
#![no_core]

src/libflate/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
#![crate_type = "dylib"]
2424
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26-
html_root_url = "https://doc.rust-lang.org/nightly/")]
26+
html_root_url = "https://doc.rust-lang.org/nightly/",
27+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2728

2829
#![feature(libc)]
2930
#![feature(staged_api)]

src/libfmt_macros/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
2626
html_root_url = "https://doc.rust-lang.org/nightly/",
27-
html_playground_url = "https://play.rust-lang.org/")]
27+
html_playground_url = "https://play.rust-lang.org/",
28+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2829

2930
#![feature(staged_api)]
3031
#![feature(unicode)]

src/libgetopts/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@
8888
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
8989
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
9090
html_root_url = "https://doc.rust-lang.org/nightly/",
91-
html_playground_url = "https://play.rust-lang.org/")]
91+
html_playground_url = "https://play.rust-lang.org/",
92+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
9293

9394
#![deny(missing_docs)]
9495
#![feature(staged_api)]

src/libgraphviz/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,8 @@
283283
#![crate_type = "dylib"]
284284
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
285285
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
286-
html_root_url = "https://doc.rust-lang.org/nightly/")]
286+
html_root_url = "https://doc.rust-lang.org/nightly/",
287+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
287288

288289
#![feature(into_cow)]
289290
#![feature(str_escape)]

src/liblibc/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2222
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
2323
html_root_url = "https://doc.rust-lang.org/nightly/",
24-
html_playground_url = "https://play.rust-lang.org/")]
24+
html_playground_url = "https://play.rust-lang.org/",
25+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2526
#![cfg_attr(test, feature(test))]
2627

2728
//! Bindings for the C standard library and other platform libraries

src/liblog/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@
167167
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
168168
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
169169
html_root_url = "https://doc.rust-lang.org/nightly/",
170-
html_playground_url = "https://play.rust-lang.org/")]
170+
html_playground_url = "https://play.rust-lang.org/",
171+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
171172
#![deny(missing_docs)]
172173

173174
#![feature(box_raw)]

src/librand/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
2424
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
2525
html_root_url = "https://doc.rust-lang.org/nightly/",
26-
html_playground_url = "https://play.rust-lang.org/")]
26+
html_playground_url = "https://play.rust-lang.org/",
27+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2728
#![no_std]
2829
#![staged_api]
2930
#![unstable(feature = "rand",

src/librbml/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@
121121
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
122122
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
123123
html_root_url = "https://doc.rust-lang.org/nightly/",
124-
html_playground_url = "https://play.rust-lang.org/")]
124+
html_playground_url = "https://play.rust-lang.org/",
125+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
125126

126127
#![feature(rustc_private)]
127128
#![feature(staged_api)]

src/librustc/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
#![crate_type = "rlib"]
2424
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26-
html_root_url = "https://doc.rust-lang.org/nightly/")]
26+
html_root_url = "https://doc.rust-lang.org/nightly/",
27+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2728

2829
#![feature(append)]
2930
#![feature(associated_consts)]

src/librustc_back/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
#![crate_type = "rlib"]
3131
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
3232
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
33-
html_root_url = "https://doc.rust-lang.org/nightly/")]
33+
html_root_url = "https://doc.rust-lang.org/nightly/",
34+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
3435

3536
#![feature(box_syntax)]
3637
#![feature(fs_canonicalize)]

src/librustc_borrowck/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
#![crate_type = "rlib"]
1818
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
1919
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
20-
html_root_url = "https://doc.rust-lang.org/nightly/")]
20+
html_root_url = "https://doc.rust-lang.org/nightly/",
21+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2122

2223
#![allow(non_camel_case_types)]
2324

src/librustc_data_structures/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
#![staged_api]
2626
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2727
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
28-
html_root_url = "https://doc.rust-lang.org/nightly/")]
28+
html_root_url = "https://doc.rust-lang.org/nightly/",
29+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2930

3031
#![feature(rustc_private, staged_api)]
3132
#![cfg_attr(test, feature(test))]

src/librustc_driver/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
#![crate_type = "rlib"]
2424
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26-
html_root_url = "https://doc.rust-lang.org/nightly/")]
26+
html_root_url = "https://doc.rust-lang.org/nightly/",
27+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2728

2829
#![feature(box_syntax)]
2930
#![feature(libc)]

src/librustc_lint/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
#![crate_type = "rlib"]
2929
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
3030
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
31-
html_root_url = "https://doc.rust-lang.org/nightly/")]
31+
html_root_url = "https://doc.rust-lang.org/nightly/",
32+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
3233

3334
#![cfg_attr(test, feature(test))]
3435
#![feature(box_patterns)]

src/librustc_llvm/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
#![crate_type = "rlib"]
2424
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26-
html_root_url = "https://doc.rust-lang.org/nightly/")]
26+
html_root_url = "https://doc.rust-lang.org/nightly/",
27+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2728

2829
#![feature(associated_consts)]
2930
#![feature(box_syntax)]

src/librustc_privacy/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
#![crate_type = "rlib"]
1818
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
1919
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
20-
html_root_url = "https://doc.rust-lang.org/nightly/")]
20+
html_root_url = "https://doc.rust-lang.org/nightly/",
21+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2122

2223
#![feature(rustc_diagnostic_macros)]
2324
#![feature(rustc_private)]

src/librustc_resolve/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
#![crate_type = "rlib"]
1818
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
1919
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
20-
html_root_url = "https://doc.rust-lang.org/nightly/")]
20+
html_root_url = "https://doc.rust-lang.org/nightly/",
21+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2122

2223
#![feature(associated_consts)]
2324
#![feature(borrow_state)]

src/librustc_trans/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
#![crate_type = "rlib"]
2424
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26-
html_root_url = "https://doc.rust-lang.org/nightly/")]
26+
html_root_url = "https://doc.rust-lang.org/nightly/",
27+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2728

2829
#![feature(box_patterns)]
2930
#![feature(box_syntax)]

src/librustc_typeck/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ This API is completely unstable and subject to change.
7171
#![crate_type = "rlib"]
7272
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
7373
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
74-
html_root_url = "https://doc.rust-lang.org/nightly/")]
74+
html_root_url = "https://doc.rust-lang.org/nightly/",
75+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
7576

7677
#![allow(non_camel_case_types)]
7778

src/librustc_unicode/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
3131
html_root_url = "https://doc.rust-lang.org/nightly/",
3232
html_playground_url = "https://play.rust-lang.org/",
33+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
3334
test(no_crate_inject))]
3435
#![no_std]
3536

src/librustdoc/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
1919
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
2020
html_root_url = "https://doc.rust-lang.org/nightly/",
21-
html_playground_url = "https://play.rust-lang.org/")]
21+
html_playground_url = "https://play.rust-lang.org/",
22+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2223

2324
#![feature(box_patterns)]
2425
#![feature(box_syntax)]

src/libserialize/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Core encoding and decoding interfaces.
2626
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2727
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
2828
html_root_url = "https://doc.rust-lang.org/nightly/",
29-
html_playground_url = "https://play.rust-lang.org/")]
29+
html_playground_url = "https://play.rust-lang.org/",
30+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
3031

3132
#![feature(box_syntax)]
3233
#![feature(collections)]

src/libstd/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@
195195
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
196196
html_root_url = "https://doc.rust-lang.org/nightly/",
197197
html_playground_url = "https://play.rust-lang.org/",
198+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
198199
test(no_crate_inject, attr(deny(warnings))),
199200
test(attr(allow(dead_code, deprecated, unused_variables, unused_mut))))]
200201

src/libsyntax/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
#![crate_type = "rlib"]
2424
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26-
html_root_url = "https://doc.rust-lang.org/nightly/")]
26+
html_root_url = "https://doc.rust-lang.org/nightly/",
27+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2728

2829
#![feature(associated_consts)]
2930
#![feature(drain)]

src/libterm/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@
5353
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
5454
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
5555
html_root_url = "https://doc.rust-lang.org/nightly/",
56-
html_playground_url = "https://play.rust-lang.org/")]
56+
html_playground_url = "https://play.rust-lang.org/",
57+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
5758
#![deny(missing_docs)]
5859

5960
#![feature(box_syntax)]

src/libtest/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
#![crate_type = "dylib"]
3333
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
3434
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
35-
html_root_url = "https://doc.rust-lang.org/nightly/")]
35+
html_root_url = "https://doc.rust-lang.org/nightly/",
36+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
3637

3738
#![feature(asm)]
3839
#![feature(box_syntax)]

0 commit comments

Comments
 (0)