Skip to content

Commit fcf91fd

Browse files
authored
Disable nightly feature doc_auto_cfg on docsrs (#392)
* Rm doc_auto_cfg from codecs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Rm doc_auto_cfg from core Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Rm doc_auto_cfg from async-compression Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --------- Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
1 parent b79f66d commit fcf91fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/async-compression/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
//! Enable the `xz-parallel` feature to enable multi-threading support.
144144
//!
145145
146-
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
146+
#![cfg_attr(docsrs, feature(doc_cfg))]
147147
#![cfg_attr(not(all), allow(unused))]
148148

149149
#[macro_use]

crates/compression-codecs/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Adaptors for various compression algorithms.
22
3-
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
3+
#![cfg_attr(docsrs, feature(doc_cfg))]
44

55
use std::io::Result;
66

crates/compression-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Abstractions for compression algorithms.
22
3-
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
3+
#![cfg_attr(docsrs, feature(doc_cfg))]
44

55
mod level;
66
pub mod unshared;

0 commit comments

Comments
 (0)