diff options
Diffstat (limited to 'tvix/eval/src/lib.rs')
-rw-r--r-- | tvix/eval/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/lib.rs b/tvix/eval/src/lib.rs index 1c3fea3d5b9f..d7255af14e68 100644 --- a/tvix/eval/src/lib.rs +++ b/tvix/eval/src/lib.rs @@ -21,6 +21,6 @@ mod tests; pub use crate::builtins::global_builtins; pub use crate::compiler::compile; pub use crate::errors::EvalResult; -pub use crate::eval::interpret; +pub use crate::eval::{interpret, Options}; pub use crate::value::Value; pub use crate::vm::run_lambda; |