From c18251f0f74dca5d656350177a63023d8479307e Mon Sep 17 00:00:00 2001 From: Nikolay Kostadinov Date: Mon, 15 Apr 2024 16:31:05 +0300 Subject: [PATCH] Make num mod public --- plonky2x/core/src/frontend/uint/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plonky2x/core/src/frontend/uint/mod.rs b/plonky2x/core/src/frontend/uint/mod.rs index 9ac10ef64..678d6171a 100644 --- a/plonky2x/core/src/frontend/uint/mod.rs +++ b/plonky2x/core/src/frontend/uint/mod.rs @@ -6,7 +6,7 @@ pub mod uint32; pub mod uint512; pub mod uint64; -pub(crate) mod num; +pub mod num; mod uint32_n;