Skip to content

Commit 16d05ce

Browse files
committed
Merge rust-bitcoin#5162: Remove doc_auto_cfg
3f33240 Remove doc_auto_cfg (Tobin C. Harding) Pull request description: This was removed in recent nightly and is breaking all the docs builds when we try and publish crates. Fix: rust-bitcoin#5155 ACKs for top commit: apoelstra: utACK 3f33240 Tree-SHA512: 776d938bf685b42d9d591228cf55b0ad00bf021a9072783a8d11fb9ebcd50ce740a7b281bec33ed24d405c86bc4257c5b4b7abafe0ad339edf5ce99d0bee9248
2 parents e304695 + 3f33240 commit 16d05ce

File tree

11 files changed

+0
-19
lines changed

11 files changed

+0
-19
lines changed

addresses/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#![cfg(feature = "alloc")]
1414
#![no_std]
1515
// Experimental features we need.
16-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1716
#![doc(test(attr(warn(unused))))]
1817
// Coding conventions.
1918
#![warn(deprecated_in_future)]

base58/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
#![cfg(feature = "alloc")]
99
#![no_std]
1010
// Experimental features we need.
11-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1211
#![cfg_attr(bench, feature(test))]
1312
// Coding conventions.
1413
#![warn(missing_docs)]

bitcoin/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
2626
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
2727
// Experimental features we need.
28-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
2928
#![cfg_attr(docsrs, feature(doc_notable_trait))]
3029
// Coding conventions.
3130
#![warn(missing_docs)]

chacha20_poly1305/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
//! to form an authenticated encryption with additional data (AEAD) algorithm.
77
88
#![no_std]
9-
// Experimental features we need.
10-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
119
// Coding conventions.
1210
#![warn(missing_docs)]
1311
#![warn(deprecated_in_future)]

consensus_encoding/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
//!
88
99
#![no_std]
10-
// Experimental features we need.
11-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1210
// Coding conventions.
1311
#![warn(missing_docs)]
1412
#![warn(deprecated_in_future)]

hashes/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@
5151
//! ```
5252
5353
#![no_std]
54-
// Experimental features we need.
55-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
5654
// Coding conventions.
5755
#![warn(missing_docs)]
5856
#![warn(deprecated_in_future)]

internals/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
//! [rust-bitcoin](https://github.com/rust-bitcoin) ecosystem.
77
88
#![no_std]
9-
// Experimental features we need.
10-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
119
// Coding conventions.
1210
#![warn(missing_docs)]
1311
#![warn(deprecated_in_future)]

io/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
//! `github.com/rust-bitcoin/rust-bitcoin/bitcoin/examples/` directory.
1515
1616
#![cfg_attr(not(feature = "std"), no_std)]
17-
// Experimental features we need.
18-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1917
// Coding conventions.
2018
#![warn(missing_docs)]
2119
#![doc(test(attr(warn(unused))))]

p2p/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
//! Rust Bitcoin Peer to Peer Message Types
44
55
#![no_std]
6-
// Experimental features we need.
7-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
86
// Coding conventions.
97
#![warn(missing_docs)]
108
#![warn(deprecated_in_future)]

primitives/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
//! [`rust-bitcoin`]: <https://github.com/rust-bitcoin>
1414
1515
#![no_std]
16-
// Experimental features we need.
17-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1816
// Coding conventions.
1917
#![warn(missing_docs)]
2018
#![warn(deprecated_in_future)]

0 commit comments

Comments
 (0)