about summary refs log tree commit diff
path: root/tvix/eval/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/lib.rs')
-rw-r--r--tvix/eval/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/lib.rs b/tvix/eval/src/lib.rs
index 70d2dbbe38..6cf3aa212a 100644
--- a/tvix/eval/src/lib.rs
+++ b/tvix/eval/src/lib.rs
@@ -24,7 +24,7 @@ mod tests;
 
 // Re-export the public interface used by other crates.
 pub use crate::builtins::global_builtins;
-pub use crate::compiler::compile;
+pub use crate::compiler::{compile, prepare_globals};
 pub use crate::errors::EvalResult;
 pub use crate::eval::{interpret, Options};
 pub use crate::pretty_ast::pretty_print_expr;