Skip to content

Commit 292b095

Browse files
fix: use doc_cfg not doc_auto_cfg (solana-foundation#3983)
1 parent d9ef37b commit 292b095

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

client/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22

33
//! An RPC client to interact with Solana programs written in [`anchor_lang`].
44
//!

lang/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22

33
//! Anchor ⚓ is a framework for Solana's Sealevel runtime providing several
44
//! convenient developer tools.

lang/syn/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22

33
pub mod codegen;
44
pub mod parser;

spl/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22

33
//! Anchor CPI wrappers for popular programs in the Solana ecosystem.
44

0 commit comments

Comments
 (0)