Skip to content

Commit 94f1046

Browse files
committed
fix: doc lints
Signed-off-by: Gregory Edison <[email protected]>
1 parent 348a029 commit 94f1046

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

crates/scroll/alloy/consensus/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
#![cfg_attr(not(feature = "std"), no_std)]
99

1010
#[cfg(not(feature = "std"))]

crates/scroll/alloy/evm/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Alloy Evm API for Scroll.
22
33
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
4-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
4+
#![cfg_attr(docsrs, feature(doc_cfg))]
55
#![cfg_attr(not(feature = "std"), no_std)]
66

77
mod block;

crates/scroll/alloy/network/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![doc = include_str!("../README.md")]
22
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
3-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
3+
#![cfg_attr(docsrs, feature(doc_cfg))]
44

55
use alloy_consensus::{TxEnvelope, TxType, TypedTransaction};
66
pub use alloy_network::*;

crates/scroll/alloy/rpc-types/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
#![cfg_attr(not(any(test, feature = "std")), no_std)]
99

1010
mod receipt;

crates/scroll/chainspec/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
66
issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
77
)]
8-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
8+
#![cfg_attr(docsrs, feature(doc_cfg))]
99
#![cfg_attr(not(feature = "std"), no_std)]
1010

1111
use alloc::{boxed::Box, vec, vec::Vec};

crates/scroll/primitives/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
issue_tracker_base_url = "https://github.com/scroll-tech/reth/issues/"
77
)]
88
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
9-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
9+
#![cfg_attr(docsrs, feature(doc_cfg))]
1010
#![cfg_attr(not(feature = "std"), no_std)]
1111

1212
use once_cell as _;

0 commit comments

Comments
 (0)