Skip to content

Commit 5cd17b8

Browse files
committed
auto merge of #12918 : sfackler/rust/doc-html-attr, r=alexcrichton
2 parents 352c5e7 + 9106c15 commit 5cd17b8

File tree

16 files changed

+48
-0
lines changed

16 files changed

+48
-0
lines changed

src/libarena/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
#[crate_type = "rlib"];
2020
#[crate_type = "dylib"];
2121
#[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")];
2225
#[allow(missing_doc)];
2326
#[feature(managed_boxes)];
2427
#[allow(deprecated_owned_vector)];

src/libcollections/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#[crate_type = "rlib"];
1717
#[crate_type = "dylib"];
1818
#[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")];
1922

2023
#[feature(macro_rules, managed_boxes, default_type_params)];
2124

src/libflate/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ Simple compression
1818
#[crate_type = "rlib"];
1919
#[crate_type = "dylib"];
2020
#[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")];
2124

2225
use std::libc::{c_void, size_t, c_int};
2326
use std::libc;

src/libfourcc/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ fn main() {
4343
#[crate_type = "rlib"];
4444
#[crate_type = "dylib"];
4545
#[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")];
4649

4750
#[feature(macro_registrar, managed_boxes)];
4851

src/libgetopts/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@
8080
#[crate_type = "rlib"];
8181
#[crate_type = "dylib"];
8282
#[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")];
8386
#[allow(missing_doc)];
8487
#[allow(deprecated_owned_vector)];
8588

src/libglob/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
#[crate_type = "rlib"];
2828
#[crate_type = "dylib"];
2929
#[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")];
3033
#[allow(deprecated_owned_vector)];
3134

3235
use std::cell::Cell;

src/libhexfloat/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ fn main() {
4040
#[crate_type = "rlib"];
4141
#[crate_type = "dylib"];
4242
#[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")];
4346

4447
#[feature(macro_registrar, managed_boxes)];
4548

src/libnum/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
#[crate_type = "rlib"];
1515
#[crate_type = "dylib"];
1616
#[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")];
1720
#[allow(deprecated_owned_vector)];
1821

1922
extern crate rand;

src/libsemver/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@
3232
#[crate_type = "rlib"];
3333
#[crate_type = "dylib"];
3434
#[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")];
3538

3639
#[allow(deprecated_owned_vector)];
3740

src/libserialize/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ Core encoding and decoding interfaces.
1818
#[crate_type = "rlib"];
1919
#[crate_type = "dylib"];
2020
#[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")];
2124
#[allow(missing_doc)];
2225
#[forbid(non_camel_case_types)];
2326
#[feature(macro_rules, managed_boxes, default_type_params)];

src/libsync/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#[crate_type = "rlib"];
1717
#[crate_type = "dylib"];
1818
#[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")];
1922

2023
#[allow(deprecated_owned_vector)];
2124

src/libtest/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
#[license = "MIT/ASL2"];
2929
#[crate_type = "rlib"];
3030
#[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")];
3134

3235
#[feature(asm, macro_rules)];
3336
#[allow(deprecated_owned_vector)];

src/libtime/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
#[crate_type = "rlib"];
1313
#[crate_type = "dylib"];
1414
#[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")];
1518

1619
#[allow(missing_doc)];
1720
#[allow(deprecated_owned_vector)];

src/liburl/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
#[crate_type = "rlib"];
1515
#[crate_type = "dylib"];
1616
#[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")];
1720
#[feature(default_type_params)];
1821
#[allow(deprecated_owned_vector)];
1922

src/libuuid/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ Examples of string representations:
5858
#[crate_type = "rlib"];
5959
#[crate_type = "dylib"];
6060
#[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")];
6164

6265
#[allow(deprecated_owned_vector)];
6366

src/libworkcache/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
#[crate_type = "rlib"];
1313
#[crate_type = "dylib"];
1414
#[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")];
1518
#[allow(deprecated_owned_vector, visible_private_types)];
1619

1720
extern crate serialize;

0 commit comments

Comments
 (0)