mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
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:
parent
d5e191d083
commit
cb191d3788
30 changed files with 186 additions and 333 deletions
|
@ -4,9 +4,7 @@ extern crate roc_load;
|
|||
extern crate roc_module;
|
||||
extern crate tempfile;
|
||||
|
||||
use roc_utils::cargo;
|
||||
use roc_utils::pretty_command_string;
|
||||
use roc_utils::root_dir;
|
||||
use roc_command_utils::{cargo, pretty_command_string, root_dir};
|
||||
use serde::Deserialize;
|
||||
use serde_xml_rs::from_str;
|
||||
use std::env;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue