Skip to content

Commit 7bf07ea

Browse files
committed
Switch from doc_auto_cfg to doc_cfg
1 parent aae91ef commit 7bf07ea

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

belt-ctr/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://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
66
)]
77
#![forbid(unsafe_code)]
8-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
8+
#![cfg_attr(docsrs, feature(doc_cfg))]
99
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
1010

1111
pub use cipher;

cbc/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
9797
)]
9898
#![forbid(unsafe_code)]
99-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
99+
#![cfg_attr(docsrs, feature(doc_cfg))]
100100
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
101101

102102
mod decrypt;

cfb-mode/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
6161
)]
6262
#![forbid(unsafe_code)]
63-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
63+
#![cfg_attr(docsrs, feature(doc_cfg))]
6464
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
6565

6666
mod decrypt;

cfb8/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
6161
)]
6262
#![forbid(unsafe_code)]
63-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
63+
#![cfg_attr(docsrs, feature(doc_cfg))]
6464
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
6565

6666
mod decrypt;

ctr/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
6565
)]
6666
#![forbid(unsafe_code)]
67-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
67+
#![cfg_attr(docsrs, feature(doc_cfg))]
6868
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
6969

7070
mod ctr_core;

ige/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
9696
)]
9797
#![forbid(unsafe_code)]
98-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
98+
#![cfg_attr(docsrs, feature(doc_cfg))]
9999
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
100100

101101
mod decrypt;

ofb/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
6363
)]
6464
#![forbid(unsafe_code)]
65-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
65+
#![cfg_attr(docsrs, feature(doc_cfg))]
6666
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
6767

6868
use cipher::{

pcbc/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
9797
)]
9898
#![forbid(unsafe_code)]
99-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
99+
#![cfg_attr(docsrs, feature(doc_cfg))]
100100
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
101101

102102
mod decrypt;

0 commit comments

Comments
 (0)