From f80b290c4e89bf6fee9914fb3c4c38ab55c46ea8 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 15 Apr 2024 18:38:22 -0400 Subject: [PATCH] Jamcrc should be crate level public This doesn't make any functional difference (because the module isn't public) but whatever, still want to do it --- src/crc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crc.rs b/src/crc.rs index 6e6683d..bd687f1 100644 --- a/src/crc.rs +++ b/src/crc.rs @@ -1,7 +1,7 @@ // SPDX-FileCopyrightText: 2023 Joshua Goins // SPDX-License-Identifier: GPL-3.0-or-later -pub struct Jamcrc { +pub(crate) struct Jamcrc { table: [u32; 256], }