Skip to content

Commit 77c1e24

Browse files
authored
chore: remove feature(doc_auto_cfg) (#327)
1 parent d529ee0 commit 77c1e24

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

crates/artifacts/artifacts/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Meta crate reexporting all artifacts types.
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

66
pub use foundry_compilers_artifacts_solc as solc;
77
pub use foundry_compilers_artifacts_vyper as vyper;

crates/artifacts/solc/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
44
#![allow(ambiguous_glob_reexports)]
5-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
5+
#![cfg_attr(docsrs, feature(doc_cfg))]
66

77
#[macro_use]
88
extern crate tracing;

crates/artifacts/vyper/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Vyper artifact types.
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

66
mod settings;
77
pub use settings::{VyperOptimizationMode, VyperSettings};

crates/compilers/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
#[macro_use]
66
extern crate tracing;

crates/core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Core utilities for foundry-compilers crates.
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

66
pub mod error;
77
pub mod utils;

0 commit comments

Comments
 (0)