From 71013afe07adb2adc700266618145ea02c24627c Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 16 Oct 2024 10:59:17 +1100 Subject: [PATCH] hashes: Put attribute under doc As is typical round here, put the attribute under the associated rustdoc. --- hashes/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashes/src/lib.rs b/hashes/src/lib.rs index c42f38cd2..c8ac1e2d3 100644 --- a/hashes/src/lib.rs +++ b/hashes/src/lib.rs @@ -74,8 +74,8 @@ extern crate core; #[cfg(feature = "bitcoin-io")] extern crate bitcoin_io as io; -#[cfg(feature = "serde")] /// A generic serialization/deserialization framework. +#[cfg(feature = "serde")] pub extern crate serde; #[cfg(all(test, feature = "serde"))]