Split utils into error and command utils

Error utils pulls in snafu which requires procedural macros.
This means it can't start compiling until syn and macro related crates are compiled.
This deals compiling all crates that depend on commands like running zig for the bitcode.
The split enables those crates to run sooner.
This commit is contained in:
Brendan Hansknecht 2023-03-10 09:32:21 -08:00
parent d5e191d083
commit cb191d3788
No known key found for this signature in database
GPG key ID: A199D0660F95F948
30 changed files with 186 additions and 333 deletions

View file

@ -16,7 +16,7 @@ use roc_ast::{
lang::{core::ast::ASTNodeId, env::Env},
mem_pool::pool_str::PoolStr,
};
use roc_utils::{index_of, slice_get};
use roc_error_utils::{index_of, slice_get};
use std::fmt;
use std::fmt::Write;