diff --git a/aes/Cargo.toml b/aes/Cargo.toml index 244b67b7..46e93f25 100644 --- a/aes/Cargo.toml +++ b/aes/Cargo.toml @@ -35,4 +35,3 @@ check-cfg = ["cfg(aes_compact)", "cfg(aes_force_soft)"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/aes/src/lib.rs b/aes/src/lib.rs index 01139578..8c82bbeb 100644 --- a/aes/src/lib.rs +++ b/aes/src/lib.rs @@ -113,7 +113,7 @@ html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] #[cfg(feature = "hazmat")] diff --git a/aria/Cargo.toml b/aria/Cargo.toml index cb2a5958..1da70de2 100644 --- a/aria/Cargo.toml +++ b/aria/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/aria/src/lib.rs b/aria/src/lib.rs index dd8b228a..14a8f683 100644 --- a/aria/src/lib.rs +++ b/aria/src/lib.rs @@ -35,7 +35,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] mod consts; diff --git a/belt-block/Cargo.toml b/belt-block/Cargo.toml index 3e4d4050..25b701d5 100644 --- a/belt-block/Cargo.toml +++ b/belt-block/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/belt-block/src/lib.rs b/belt-block/src/lib.rs index 4ad79905..ff8353bc 100644 --- a/belt-block/src/lib.rs +++ b/belt-block/src/lib.rs @@ -17,7 +17,7 @@ html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] #![forbid(unsafe_code)] diff --git a/blowfish/Cargo.toml b/blowfish/Cargo.toml index 66d0a7c3..e80c4d44 100644 --- a/blowfish/Cargo.toml +++ b/blowfish/Cargo.toml @@ -25,4 +25,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/blowfish/src/lib.rs b/blowfish/src/lib.rs index 9f53af0b..e657769f 100644 --- a/blowfish/src/lib.rs +++ b/blowfish/src/lib.rs @@ -16,7 +16,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] pub use cipher; diff --git a/camellia/Cargo.toml b/camellia/Cargo.toml index 0f0869fc..4874b739 100644 --- a/camellia/Cargo.toml +++ b/camellia/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/camellia/src/lib.rs b/camellia/src/lib.rs index 7f15618d..b72ef7af 100644 --- a/camellia/src/lib.rs +++ b/camellia/src/lib.rs @@ -38,7 +38,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] use core::marker::PhantomData; diff --git a/cast5/Cargo.toml b/cast5/Cargo.toml index 9b2be707..92657ec2 100644 --- a/cast5/Cargo.toml +++ b/cast5/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/cast5/src/lib.rs b/cast5/src/lib.rs index 9ddd8ec1..26dede16 100644 --- a/cast5/src/lib.rs +++ b/cast5/src/lib.rs @@ -35,7 +35,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] pub use cipher; diff --git a/cast6/Cargo.toml b/cast6/Cargo.toml index f9034f0c..485fcff9 100644 --- a/cast6/Cargo.toml +++ b/cast6/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/cast6/src/lib.rs b/cast6/src/lib.rs index 47f06ea6..4c462c72 100644 --- a/cast6/src/lib.rs +++ b/cast6/src/lib.rs @@ -35,7 +35,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] pub use cipher; diff --git a/des/Cargo.toml b/des/Cargo.toml index 1ca64852..6b573de2 100644 --- a/des/Cargo.toml +++ b/des/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/des/src/lib.rs b/des/src/lib.rs index 718376fb..f72d1b86 100644 --- a/des/src/lib.rs +++ b/des/src/lib.rs @@ -18,7 +18,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] pub use cipher; diff --git a/gift/Cargo.toml b/gift/Cargo.toml index de6846f6..6e1c58bd 100644 --- a/gift/Cargo.toml +++ b/gift/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/gift/src/lib.rs b/gift/src/lib.rs index 2c44b655..4a7802c0 100644 --- a/gift/src/lib.rs +++ b/gift/src/lib.rs @@ -38,7 +38,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] use cipher::{ diff --git a/idea/Cargo.toml b/idea/Cargo.toml index 73ed1b6e..9b55515d 100644 --- a/idea/Cargo.toml +++ b/idea/Cargo.toml @@ -23,4 +23,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/idea/src/lib.rs b/idea/src/lib.rs index 9a64bfe6..3a31f952 100644 --- a/idea/src/lib.rs +++ b/idea/src/lib.rs @@ -16,7 +16,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] #![allow(clippy::many_single_char_names)] diff --git a/kuznyechik/Cargo.toml b/kuznyechik/Cargo.toml index fb03068d..ad4ffa34 100644 --- a/kuznyechik/Cargo.toml +++ b/kuznyechik/Cargo.toml @@ -29,4 +29,3 @@ check-cfg = ['cfg(kuznyechik_backend, values("soft", "compact_soft"))'] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/kuznyechik/src/lib.rs b/kuznyechik/src/lib.rs index ce93753a..a05bdd2f 100644 --- a/kuznyechik/src/lib.rs +++ b/kuznyechik/src/lib.rs @@ -27,7 +27,7 @@ html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] #![allow(clippy::needless_range_loop, clippy::transmute_ptr_to_ptr)] diff --git a/magma/Cargo.toml b/magma/Cargo.toml index a6661c54..4784f516 100644 --- a/magma/Cargo.toml +++ b/magma/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/magma/src/lib.rs b/magma/src/lib.rs index 9ef8d891..3e5dfff2 100644 --- a/magma/src/lib.rs +++ b/magma/src/lib.rs @@ -41,7 +41,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] pub use cipher; diff --git a/rc2/Cargo.toml b/rc2/Cargo.toml index ab9f2056..34a2732f 100644 --- a/rc2/Cargo.toml +++ b/rc2/Cargo.toml @@ -23,4 +23,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/rc2/src/lib.rs b/rc2/src/lib.rs index 8aeb9326..20eb48a1 100644 --- a/rc2/src/lib.rs +++ b/rc2/src/lib.rs @@ -16,7 +16,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] pub use cipher; diff --git a/rc5/Cargo.toml b/rc5/Cargo.toml index e99f6831..fb73f50f 100644 --- a/rc5/Cargo.toml +++ b/rc5/Cargo.toml @@ -23,4 +23,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/rc5/src/lib.rs b/rc5/src/lib.rs index 1d76c1b2..c7835846 100644 --- a/rc5/src/lib.rs +++ b/rc5/src/lib.rs @@ -15,7 +15,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] use cipher::{ diff --git a/serpent/Cargo.toml b/serpent/Cargo.toml index 88009d92..44cb740d 100644 --- a/serpent/Cargo.toml +++ b/serpent/Cargo.toml @@ -23,7 +23,6 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(serpent_no_unroll)'] } diff --git a/serpent/src/lib.rs b/serpent/src/lib.rs index d7b6c5c7..6303251b 100644 --- a/serpent/src/lib.rs +++ b/serpent/src/lib.rs @@ -16,7 +16,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] #![allow(clippy::needless_range_loop)] diff --git a/sm4/Cargo.toml b/sm4/Cargo.toml index 1ef4302d..8b092bd6 100644 --- a/sm4/Cargo.toml +++ b/sm4/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/sm4/src/lib.rs b/sm4/src/lib.rs index 26f8c64d..f4eed8e8 100644 --- a/sm4/src/lib.rs +++ b/sm4/src/lib.rs @@ -16,7 +16,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] pub use cipher; diff --git a/speck/Cargo.toml b/speck/Cargo.toml index 36b37784..48484f6e 100644 --- a/speck/Cargo.toml +++ b/speck/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/speck/src/lib.rs b/speck/src/lib.rs index a87383ac..fc2028c0 100644 --- a/speck/src/lib.rs +++ b/speck/src/lib.rs @@ -8,7 +8,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] pub use cipher; diff --git a/threefish/Cargo.toml b/threefish/Cargo.toml index a56a7990..90d445f6 100644 --- a/threefish/Cargo.toml +++ b/threefish/Cargo.toml @@ -25,4 +25,3 @@ default = ["cipher"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/threefish/src/lib.rs b/threefish/src/lib.rs index 5c7b3c58..d27788ca 100644 --- a/threefish/src/lib.rs +++ b/threefish/src/lib.rs @@ -16,7 +16,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] #[cfg(feature = "cipher")] diff --git a/twofish/Cargo.toml b/twofish/Cargo.toml index 5d3a3459..8f3c29af 100644 --- a/twofish/Cargo.toml +++ b/twofish/Cargo.toml @@ -24,4 +24,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/twofish/src/lib.rs b/twofish/src/lib.rs index 554e124b..cc9a9930 100644 --- a/twofish/src/lib.rs +++ b/twofish/src/lib.rs @@ -16,7 +16,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] #![allow(clippy::needless_range_loop, clippy::unreadable_literal)] diff --git a/xtea/Cargo.toml b/xtea/Cargo.toml index 774ea4be..87d93939 100644 --- a/xtea/Cargo.toml +++ b/xtea/Cargo.toml @@ -23,4 +23,3 @@ zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/xtea/src/lib.rs b/xtea/src/lib.rs index f73ef1ca..e37cf5c4 100644 --- a/xtea/src/lib.rs +++ b/xtea/src/lib.rs @@ -16,7 +16,7 @@ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] pub use cipher;