Skip to content

Commit c26f128

Browse files
committed
Remove html_root_url
1 parent 54f795f commit c26f128

File tree

10 files changed

+0
-20
lines changed

10 files changed

+0
-20
lines changed

futures-channel/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222

2323
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
2424

25-
#![doc(html_root_url = "https://docs.rs/futures-channel/0.3.8")]
26-
2725
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
2826
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");
2927

futures-core/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1818

19-
#![doc(html_root_url = "https://docs.rs/futures-core/0.3.8")]
20-
2119
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
2220
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");
2321

futures-executor/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1919

20-
#![doc(html_root_url = "https://docs.rs/futures-executor/0.3.8")]
21-
2220
#![cfg_attr(docsrs, feature(doc_cfg))]
2321

2422
#[cfg(feature = "std")]

futures-io/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
2626

27-
#![doc(html_root_url = "https://docs.rs/futures-io/0.3.8")]
28-
2927
#![cfg_attr(docsrs, feature(doc_cfg))]
3028

3129
#[cfg(all(feature = "read-initializer", not(feature = "unstable")))]

futures-macro/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1515

16-
#![doc(html_root_url = "https://docs.rs/futures-join-macro/0.3.8")]
17-
1816
// Since https://github.com/rust-lang/cargo/pull/7700 `proc_macro` is part of the prelude for
1917
// proc-macro crates, but to support older compilers we still need this explicit `extern crate`.
2018
#[allow(unused_extern_crates)]

futures-sink/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1818

19-
#![doc(html_root_url = "https://docs.rs/futures-sink/0.3.8")]
20-
2119
#[cfg(feature = "alloc")]
2220
extern crate alloc;
2321

futures-task/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1818

19-
#![doc(html_root_url = "https://docs.rs/futures-task/0.3.8")]
20-
2119
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
2220
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");
2321

futures-test/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1414

15-
#![doc(html_root_url = "https://docs.rs/futures-test/0.3.8")]
16-
1715
#[cfg(not(feature = "std"))]
1816
compile_error!("`futures-test` must have the `std` feature activated, this is a default-active feature");
1917

futures-util/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
2020

21-
#![doc(html_root_url = "https://docs.rs/futures-util/0.3.8")]
22-
2321
#![cfg_attr(docsrs, feature(doc_cfg))]
2422

2523
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]

futures/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,6 @@
9595

9696
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
9797

98-
#![doc(html_root_url = "https://docs.rs/futures/0.3.8")]
99-
10098
#![cfg_attr(docsrs, feature(doc_cfg))]
10199

102100
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]

0 commit comments

Comments
 (0)