Skip to content

Commit a71f93a

Browse files
authored
chore: remove feature(doc_auto_cfg) (#1019)
1 parent f64c6aa commit a71f93a

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

crates/core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
)]
66
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
77
#![cfg_attr(not(feature = "std"), no_std)]
8-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
8+
#![cfg_attr(docsrs, feature(doc_cfg))]
99

1010
#[doc(inline)]
1111
pub use alloy_primitives as primitives;

crates/dyn-abi/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
)]
1515
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
1616
#![cfg_attr(not(feature = "std"), no_std)]
17-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
17+
#![cfg_attr(docsrs, feature(doc_cfg))]
1818

1919
#[macro_use]
2020
extern crate alloc;

crates/json-abi/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
)]
1515
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
1616
#![cfg_attr(not(feature = "std"), no_std)]
17-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
17+
#![cfg_attr(docsrs, feature(doc_cfg))]
1818
#![allow(clippy::literal_string_with_formatting_args)] // TODO: https://github.com/rust-lang/rust-clippy/issues/13885
1919

2020
#[macro_use]

crates/primitives/src/bits/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/// type-confused for another named `FixedBytes`.
66
///
77
/// **NOTE:** This macro currently requires:
8-
/// - `#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]` at the top level of the crate.
8+
/// - `#![cfg_attr(docsrs, feature(doc_cfg))]` at the top level of the crate.
99
/// - The `derive_more` crate in scope.
1010
///
1111
/// # Examples

crates/primitives/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
77
#![cfg_attr(not(feature = "std"), no_std)]
88
#![cfg_attr(feature = "nightly", feature(hasher_prefixfree_extras))]
9-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
9+
#![cfg_attr(docsrs, feature(doc_cfg))]
1010

1111
#[macro_use]
1212
extern crate alloc;

crates/sol-macro-expander/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
)]
66
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
77
#![allow(clippy::missing_const_for_fn, rustdoc::broken_intra_doc_links)]
8-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
8+
#![cfg_attr(docsrs, feature(doc_cfg))]
99

1010
pub mod expand;
1111
mod utils;

crates/sol-macro-input/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
html_favicon_url = "https://raw.githubusercontent.com/alloy-rs/core/main/assets/favicon.ico"
55
)]
66
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
7-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
7+
#![cfg_attr(docsrs, feature(doc_cfg))]
88

99
extern crate syn_solidity as ast;
1010

crates/sol-macro/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
html_favicon_url = "https://raw.githubusercontent.com/alloy-rs/core/main/assets/favicon.ico"
1313
)]
1414
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
15-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
15+
#![cfg_attr(docsrs, feature(doc_cfg))]
1616

1717
#[macro_use]
1818
extern crate proc_macro_error2;

crates/sol-type-parser/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
)]
66
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
77
#![cfg_attr(not(feature = "std"), no_std)]
8-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
8+
#![cfg_attr(docsrs, feature(doc_cfg))]
99

1010
#[macro_use]
1111
extern crate alloc;

crates/sol-types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
)]
66
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
77
#![cfg_attr(not(feature = "std"), no_std)]
8-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
8+
#![cfg_attr(docsrs, feature(doc_cfg))]
99

1010
#[allow(unused_extern_crates)]
1111
extern crate self as alloy_sol_types;

0 commit comments

Comments
 (0)