From 05c9deba7a2baee468b262b9c8dd71076e92ec6c Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 7 Jan 2024 19:35:27 -0700 Subject: [PATCH] digest: remove lingering `docsrs` attrs These were leftover from the migration to `doc_auto_cfg` in #1370. They're breaking the doc build. --- digest/src/dev.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/digest/src/dev.rs b/digest/src/dev.rs index 5ceae41b..7018e854 100644 --- a/digest/src/dev.rs +++ b/digest/src/dev.rs @@ -39,7 +39,6 @@ macro_rules! new_test { /// Define hash function serialization test #[macro_export] -#[cfg_attr(docsrs, doc(cfg(feature = "dev")))] macro_rules! hash_serialization_test { ($name:ident, $hasher:ty, $expected_serialized_state:expr) => { #[test] @@ -73,7 +72,6 @@ macro_rules! hash_serialization_test { /// Define hash function serialization test #[macro_export] -#[cfg_attr(docsrs, doc(cfg(feature = "dev")))] macro_rules! hash_rt_outsize_serialization_test { ($name:ident, $hasher:ty, $expected_serialized_state:expr) => { #[test]