From 4ba7d703ac125c6d151f1d225cbfe2a49f28ad22 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Tue, 25 Jun 2024 11:46:45 -0400 Subject: [PATCH] make arbitraryvalue not pub --- crates/serde/src/other/arbitrary_.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/serde/src/other/arbitrary_.rs b/crates/serde/src/other/arbitrary_.rs index 3f28a84b724..1b437780121 100644 --- a/crates/serde/src/other/arbitrary_.rs +++ b/crates/serde/src/other/arbitrary_.rs @@ -17,7 +17,7 @@ impl arbitrary::Arbitrary<'_> for OtherFields { /// Redefinition of `serde_json::Value` for the purpose of implementing `Arbitrary`. #[derive(Clone, Debug, arbitrary::Arbitrary)] #[allow(unnameable_types)] -pub enum ArbitraryValue { +enum ArbitraryValue { Null, Bool(bool), Number(u64),