From 29a033ce3eb0d5b6942fa88fd2e890d076457f4c Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Thu, 5 Dec 2024 13:23:28 +0100 Subject: [PATCH] export ENABLE_KECCAK flag in the root of crate --- src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 5a3aca19..020b0654 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,7 +21,9 @@ pub use allocator::{Allocator, Atom, NodePtr, SExp}; pub use chia_dialect::ChiaDialect; pub use run_program::run_program; -pub use chia_dialect::{LIMIT_HEAP, MEMPOOL_MODE, NO_UNKNOWN_OPS}; +pub use chia_dialect::{ + ENABLE_KECCAK, ENABLE_KECCAK_OPS_OUTSIDE_GUARD, LIMIT_HEAP, MEMPOOL_MODE, NO_UNKNOWN_OPS, +}; #[cfg(feature = "counters")] pub use run_program::run_program_with_counters;