diff --git a/tvix/eval/src/vm/mod.rs b/tvix/eval/src/vm/mod.rs index b3d6dad93..681b8fb97 100644 --- a/tvix/eval/src/vm/mod.rs +++ b/tvix/eval/src/vm/mod.rs @@ -219,7 +219,7 @@ impl Frame { } #[derive(Default)] -struct ImportCache(Box>); +struct ImportCache(HashMap); /// The `ImportCache` holds the `Value` resulting from `import`ing a certain /// file, so that the same file doesn't need to be re-evaluated multiple times.