diff --git a/src/wasm-lib/kcl/src/walk/import_graph.rs b/src/wasm-lib/kcl/src/walk/import_graph.rs index 050f0d126..3eb7df155 100644 --- a/src/wasm-lib/kcl/src/walk/import_graph.rs +++ b/src/wasm-lib/kcl/src/walk/import_graph.rs @@ -21,7 +21,7 @@ type Graph = Vec; /// This will (currently) return a list of lists of IDs that can be safely /// run concurrently. Each "stage" is blocking in this model, which will /// change in the future. Don't use this function widely, yet. -pub(crate) fn import_graph<'a>(progs: HashMap>) -> Result>> { +pub fn import_graph<'a>(progs: HashMap>) -> Result>> { let mut graph = Graph::new(); for (name, program) in progs.iter() {