From f7b998af295a5eed4fdb4a68358bc3e46bd745ef Mon Sep 17 00:00:00 2001 From: Sean Lynch <42618346+swlynch99@users.noreply.github.com> Date: Wed, 6 Dec 2023 16:31:30 -0800 Subject: [PATCH] Make the schemars_0_8 module private It has no members so there's no point in adding it to the public API. --- serde_with/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serde_with/src/lib.rs b/serde_with/src/lib.rs index 068b5e06..12d180a9 100644 --- a/serde_with/src/lib.rs +++ b/serde_with/src/lib.rs @@ -331,7 +331,7 @@ pub mod json; mod key_value_map; pub mod rust; #[cfg(feature = "schemars_0_8")] -pub mod schemars_0_8; +mod schemars_0_8; pub mod ser; #[cfg(feature = "std")] mod serde_conv;