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.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/tvix/eval/src/lib.rs b/tvix/eval/src/lib.rs
index e1a5ceaed8..447c74cc0e 100644
--- a/tvix/eval/src/lib.rs
+++ b/tvix/eval/src/lib.rs
@@ -4,7 +4,7 @@ mod compiler;
 mod disassembler;
 mod errors;
 mod eval;
-mod observer;
+pub mod observer;
 mod opcode;
 mod upvalues;
 mod value;
@@ -14,6 +14,10 @@ mod warnings;
 #[cfg(test)]
 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::errors::EvalResult;
 pub use crate::eval::interpret;
 pub use crate::value::Value;
+pub use crate::vm::run_lambda;