From 6ff2284953a99188eb7492725d23ba32b626a591 Mon Sep 17 00:00:00 2001 From: Murad Bashirov Date: Sun, 22 Oct 2023 15:11:52 +0900 Subject: [PATCH] fix(ast): make unparse module public --- ast/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast/src/lib.rs b/ast/src/lib.rs index 4e5d3715..143fac1c 100644 --- a/ast/src/lib.rs +++ b/ast/src/lib.rs @@ -20,7 +20,7 @@ mod generic; mod impls; mod ranged; #[cfg(feature = "unparse")] -mod unparse; +pub mod unparse; #[cfg(feature = "malachite-bigint")] pub use malachite_bigint as bigint;