diff --git a/Cargo.lock b/Cargo.lock index 9865940..3082179 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9,6 +9,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "arrayref" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" + [[package]] name = "arrayvec" version = "0.5.1" @@ -32,12 +38,29 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" +[[package]] +name = "base64" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" + [[package]] name = "bitflags" version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" +[[package]] +name = "blake2b_simd" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" +dependencies = [ + "arrayref", + "arrayvec", + "constant_time_eq", +] + [[package]] name = "cfg-if" version = "0.1.10" @@ -88,10 +111,64 @@ dependencies = [ "serde 1.0.114", "serde-hjson", "serde_json", - "toml", + "toml 0.5.7", "yaml-rust", ] +[[package]] +name = "constant_time_eq" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" + +[[package]] +name = "crossbeam-utils" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" +dependencies = [ + "autocfg", + "cfg-if", + "lazy_static", +] + +[[package]] +name = "directories" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fed639d60b58d0f53498ab13d26f621fd77569cc6edb031f4cc36a2ad9da0f" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a" +dependencies = [ + "libc", + "redox_users", + "winapi", +] + +[[package]] +name = "error-chain" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8" + +[[package]] +name = "getrandom" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + [[package]] name = "heck" version = "0.3.1" @@ -113,9 +190,60 @@ dependencies = [ [[package]] name = "igloo" version = "0.1.0" +dependencies = [ + "igloo_agent", + "igloo_cli", + "igloo_core", + "igloo_make", + "igloo_manifest", +] + +[[package]] +name = "igloo_agent" +version = "0.1.0" + +[[package]] +name = "igloo_base" +version = "0.1.0" +dependencies = [ + "directories", +] + +[[package]] +name = "igloo_cli" +version = "0.1.0" +dependencies = [ + "clap", + "config", + "igloo_base", +] + +[[package]] +name = "igloo_core" +version = "0.1.0" dependencies = [ "clap", "config", + "igloo_base", + "igloo_cli", + "igloo_make", + "igloo_manifest", + "zmq", +] + +[[package]] +name = "igloo_make" +version = "0.1.0" +dependencies = [ + "igloo_base", +] + +[[package]] +name = "igloo_manifest" +version = "0.1.0" +dependencies = [ + "config", + "igloo_base", ] [[package]] @@ -174,12 +302,32 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a" +[[package]] +name = "log" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b" +dependencies = [ + "cfg-if", +] + [[package]] name = "memchr" version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400" +[[package]] +name = "metadeps" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73b122901b3a675fac8cecf68dcb2f0d3036193bc861d1ac0e1c337f7d5254c2" +dependencies = [ + "error-chain", + "pkg-config", + "toml 0.2.1", +] + [[package]] name = "nom" version = "5.1.2" @@ -215,6 +363,12 @@ version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06de47b848347d8c4c94219ad8ecd35eb90231704b067e67e6ae2e36ee023510" +[[package]] +name = "pkg-config" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c" + [[package]] name = "proc-macro-error" version = "1.0.4" @@ -257,6 +411,23 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "redox_syscall" +version = "0.1.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" + +[[package]] +name = "redox_users" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d" +dependencies = [ + "getrandom", + "redox_syscall", + "rust-argon2", +] + [[package]] name = "regex" version = "1.3.9" @@ -275,6 +446,18 @@ version = "0.6.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8" +[[package]] +name = "rust-argon2" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dab61250775933275e84053ac235621dfb739556d5c54a2f2e9313b7cf43a19" +dependencies = [ + "base64", + "blake2b_simd", + "constant_time_eq", + "crossbeam-utils", +] + [[package]] name = "rust-ini" version = "0.13.0" @@ -382,6 +565,12 @@ dependencies = [ "lazy_static", ] +[[package]] +name = "toml" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "736b60249cb25337bc196faa43ee12c705e426f3d55c214d73a4e7be06f92cb4" + [[package]] name = "toml" version = "0.5.7" @@ -421,6 +610,12 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed" +[[package]] +name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + [[package]] name = "winapi" version = "0.3.9" @@ -460,3 +655,25 @@ checksum = "39f0c922f1a334134dc2f7a8b67dc5d25f0735263feec974345ff706bcf20b0d" dependencies = [ "linked-hash-map 0.5.3", ] + +[[package]] +name = "zmq" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aad98a7a617d608cd9e1127147f630d24af07c7cd95ba1533246d96cbdd76c66" +dependencies = [ + "bitflags", + "libc", + "log", + "zmq-sys", +] + +[[package]] +name = "zmq-sys" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d33a2c51dde24d5b451a2ed4b488266df221a5eaee2ee519933dc46b9a9b3648" +dependencies = [ + "libc", + "metadeps", +] diff --git a/Cargo.toml b/Cargo.toml index 46dbbfe..4826ebe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,5 +10,12 @@ license="GPL-3.0+" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = "3.0.0-beta.2" -config = "0.10" +igloo_core = { path = "./igloo_core" } +igloo_cli = { path = "./igloo_cli" } +igloo_agent = { path = "./igloo_agent" } +igloo_manifest = { path = "./igloo_manifest" } +igloo_make = { path = "./igloo_make" } + + +[workspace] +members = ["igloo_base", "igloo_core", "igloo_cli", "igloo_agent", "igloo_manifest", "igloo_make"] diff --git a/igloo_agent/Cargo.toml b/igloo_agent/Cargo.toml new file mode 100644 index 0000000..8bd8a21 --- /dev/null +++ b/igloo_agent/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "igloo_agent" +version = "0.1.0" +authors = ["Penguin "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/igloo_agent/src/main.rs b/igloo_agent/src/main.rs new file mode 100644 index 0000000..c4793b2 --- /dev/null +++ b/igloo_agent/src/main.rs @@ -0,0 +1,6 @@ +use igloo_cli::*; + +fn main() { + let x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1; + println!("Hello, world!"); +} diff --git a/igloo_base/Cargo.toml b/igloo_base/Cargo.toml new file mode 100644 index 0000000..364be5a --- /dev/null +++ b/igloo_base/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "igloo_base" +version = "0.1.0" +authors = ["Penguin "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +directories = "3.0.1" \ No newline at end of file diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3.lock b/igloo_base/src/env_info.rs similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3.lock rename to igloo_base/src/env_info.rs diff --git a/igloo_base/src/lib.rs b/igloo_base/src/lib.rs new file mode 100644 index 0000000..6081501 --- /dev/null +++ b/igloo_base/src/lib.rs @@ -0,0 +1,109 @@ +mod env_info; + +use std::path::PathBuf; +use std::env; +use directories::*; + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} + + +#[derive(Debug)] +#[derive(PartialEq)] +pub enum IglooInstType +{ + Null = -1, + New = 0, + Run = 1, + Flash = 2, + Debug = 3, + Clean = 4, + Erase = 5, + GenDoc = 6, +} + +#[derive(Debug)] +#[derive(PartialEq)] +pub enum IglooErrType +{ + ErrNone = 0, + ErrUnknown = 1, + ConfigNotFound = 2, + ConfigFound = 3, + UnknownInstType = 4, + NewCalledInsideProject = 5, + FolderAlreadyExists = 6, + InvalidProjectName = 7, + InvalidEnvInfo = 8, + InvalidTarget = 9, + /// Failed to load ePenguin Make Manifest + /// This means igloo couldn't find the master + /// make manifest + FailedToLoadMasterMakeManifest = 10, + /// Failed to load ePenguin Target Manifest + /// This means igloo couldn't find the master + /// target manifest + FailedToLoadMasterTargetManifest = 11, + /// This means igloo couldn't find the scripts dir + /// which should be located within a target directory + /// It should be impossible for igloo to generate a target + /// inside a project without also generating a scripts directory. + /// The likely culprit of this failure is a user has messed with the folder + FailedToFindTargetScriptsDir = 12, +} + + +#[derive(Debug)] +#[derive(PartialEq)] +#[derive(Clone)] +pub struct IglooEnvInfo +{ + // Current Working Directory + pub cwd: PathBuf, + // Home Directory + pub hd: PathBuf, + // ESF Directory + pub esfd: PathBuf, +} + +impl IglooEnvInfo +{ + /// Returns the environment information for the igloo call + pub fn get_env_info() -> IglooEnvInfo + { + IglooEnvInfo + { + cwd: env::current_dir().unwrap(), + hd: match UserDirs::new() + { + Some(v) => v.home_dir().to_owned(), + None => + { + println!("Error: Failed to get home directory.\n\ + This should never happen. Exiting..."); + std::process::exit(1); + } + }, + esfd: match std::env::var("ESF_DIR") + { + Ok(v) => + { + std::path::PathBuf::from(&v.to_owned()) + } + Err(e) => + { + // Note: Need to change new to return errors + // instead of exiting early + println!("Error: $ESF_DIR not defined as an environment\ + variable -- {:?}", e); + std::process::exit(1); + } + } + } + } +} diff --git a/igloo_cli/Cargo.toml b/igloo_cli/Cargo.toml new file mode 100644 index 0000000..b1fead5 --- /dev/null +++ b/igloo_cli/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "igloo_cli" +version = "0.1.0" +authors = ["Penguin "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +igloo_base = { path = "../igloo_base" } +clap = "3.0.0-beta.2" +config = "0.10" diff --git a/igloo_cli/src/lib.rs b/igloo_cli/src/lib.rs new file mode 100644 index 0000000..ab97218 --- /dev/null +++ b/igloo_cli/src/lib.rs @@ -0,0 +1,93 @@ +extern crate clap; +extern crate config; + +use igloo_base::*; +use igloo_base::IglooInstType::*; +use igloo_base::IglooErrType::*; + +use clap::{App, Arg, ArgMatches}; + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} + + +/// runs the clap initializer to get command line arguments +pub fn igloo_app() -> ArgMatches +{ + let ret_app = App::new("igloo") + .about(clap::crate_description!()) + .version(clap::crate_version!()) + .setting(clap::AppSettings::SubcommandRequiredElseHelp) + .subcommand(App::new("new") + .about("Creates a new igloo project") + .arg(Arg::new("project_name") + .required(true) + .about("The name of the project to be created"),) + .arg(Arg::new("target") + .required(true) + .about("MCU Target") + .short('t') + .long("target") + .takes_value(true)),) + .subcommand(App::new("run") + .about("Compiles if needed. Flashes MCU and runs \ + current project on default target.") + .arg(Arg::new("build_type") + .required(false) + .about("Release or Debug build type\n\ + Defaults to Debug")),) + .subcommand(App::new("flash") + .about("Flashes target mcu or multiple mcus") + .arg(Arg::new("build_type") + .required(false) + .about("Release or Debug build type\n\ + Defaults to Debug")),) + .subcommand(App::new("erase") + .about("Erases flash from target mcu or target mcus")) + .get_matches(); + + ret_app +} + + +pub fn igloo_subcommand(args: &ArgMatches) -> Result +{ + let mut _res_type: IglooInstType = Null; + match args.subcommand_name() + { + Some("new") => + { + println!("Igloo new was called!"); + _res_type = New; + } + Some("run") => + { + println!("Igloo run was called!"); + _res_type = Run; + } + Some("flash") => + { + println!("Igloo flash was called!"); + _res_type = Flash; + } + Some("erase") => + { + println!("Igloo erase was called!"); + _res_type = Erase; + } + None => unreachable!(), + _ => unreachable!(), + } + + if _res_type == Null + { + return Err(ErrUnknown) + } + + Ok(_res_type) +} diff --git a/igloo_core/Cargo.toml b/igloo_core/Cargo.toml new file mode 100644 index 0000000..53d7a25 --- /dev/null +++ b/igloo_core/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "igloo_core" +version = "0.1.0" +authors = ["Penguin "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +clap = "3.0.0-beta.2" +config = "0.10" +igloo_cli = { path = "../igloo_cli" } +igloo_manifest = { path = "../igloo_manifest" } +igloo_make = { path = "../igloo_make" } +igloo_base = { path = "../igloo_base" } +zmq = "0.9" \ No newline at end of file diff --git a/igloo_core/src/igloo_action.rs b/igloo_core/src/igloo_action.rs new file mode 100644 index 0000000..97fc627 --- /dev/null +++ b/igloo_core/src/igloo_action.rs @@ -0,0 +1,51 @@ +use igloo_base::*; +use igloo_base::IglooErrType::*; + +use crate::Igloo; +use crate::igloo_project::IglooPrj; + +pub fn run(prj_name: &str, target: &str) -> IglooErrType +{ + let res_err: IglooErrType = ErrNone; + res_err +} + +pub fn new(inst: &Igloo, prj_name: &str, target: &str) + -> IglooErrType +{ + let mut res_err: IglooErrType = ErrNone; + // Check if we are already inside of an igloo project + // Creating an igloo project inside an igloo project + // is a no no + if std::path::Path::new(".igloo").exists() + { + res_err = NewCalledInsideProject; + return res_err + } + // Check if the project folder already exists + // Don't want to accidentally overwrite anything + if std::path::Path::new(prj_name).exists() + { + res_err = FolderAlreadyExists; + return res_err + } + + let mut project = IglooPrj::new(inst, prj_name, target); + match project + { + Err(e) => + { + println!("Error spawning project: {:?}", e); + res_err = e; + return res_err + } + _ => (), + } + + let res_err = project.unwrap().populate(); + if res_err != ErrNone + { + return res_err + } + res_err +} diff --git a/src/igloo_prj.rs b/igloo_core/src/igloo_project.rs similarity index 81% rename from src/igloo_prj.rs rename to igloo_core/src/igloo_project.rs index e1394e9..cb4ce22 100644 --- a/src/igloo_prj.rs +++ b/igloo_core/src/igloo_project.rs @@ -1,10 +1,15 @@ -use crate::igloo::{Igloo, IglooEnvInfo, IglooErrType}; -use crate::igloo_manifest::IglooManifest; -use std::collections::HashMap; +use igloo_base::*; +use igloo_base::IglooErrType::*; +use igloo_manifest::*; + +use crate::Igloo; +use crate::igloo_target::IglooTarget; + +use std::vec::Vec; use std::fs::OpenOptions; use std::fs::File; use std::io::prelude::*; -use std::os::unix::fs; + // New Project // --- Verify location // --- Populate base folders @@ -20,19 +25,6 @@ pub struct IglooPrj project_dir: std::path::PathBuf, } -pub struct IglooTargetManifest -{ - links: HashMap, - includes: Vec, - openocd: HashMap, -} - -pub struct IglooTarget -{ - name: String, - make_manifest: HashMap, - target_manifest: IglooTargetManifest, -} impl IglooPrj { @@ -49,18 +41,18 @@ impl IglooPrj pub fn new(inst: &Igloo, nameIn: &str, targetIn: &str) -> Result { - let mut res_err = IglooErrType::IGLOO_ERR_NONE; + let mut res_err = ErrNone; if String::from(nameIn).is_empty() { - res_err = IglooErrType::IGLOO_INVALID_PROJECT_NAME; + res_err = InvalidProjectName; return Err(res_err) } - if res_err != IglooErrType::IGLOO_ERR_NONE + if res_err != ErrNone { return Err(res_err) } - match IglooManifest::target_exists(inst, targetIn) + match target_exists(&inst.master_make_man, &inst.master_target_man, targetIn) { Ok(v) => { @@ -71,7 +63,7 @@ impl IglooPrj else { println!("Couldn't verify target exists {}", nameIn); - return Err(IglooErrType::IGLOO_INVALID_TARGET) + return Err(InvalidTarget) } } Err(e) => @@ -80,9 +72,9 @@ impl IglooPrj } } - let mut _targ_make_table_name = inst.target_manifest.get_str( + let mut _targ_make_table_name = inst.master_target_man.get_str( &("target.make.".to_owned() + &targetIn)).unwrap(); - let mut _targ_manifest_file_name = inst.target_manifest.get_str( + let mut _targ_manifest_file_name = inst.master_target_man.get_str( &("target.manifest.".to_owned() + &targetIn)).unwrap(); let mut temp: Vec = Vec::new(); @@ -97,7 +89,7 @@ impl IglooPrj { name: String::from(nameIn), target_bank: temp, - project_dir: IglooEnvInfo::info().cwd.join(nameIn), + project_dir: IglooEnvInfo::get_env_info().cwd.join(nameIn), }) } @@ -105,7 +97,7 @@ impl IglooPrj { // Create new directory - let mut active_dir = IglooEnvInfo::info().cwd; + let mut active_dir = IglooEnvInfo::get_env_info().cwd; //println!("Active Directory: {:?}", active_dir.display()); println!("NAME: {}", self.name); active_dir.push(&self.name); @@ -167,7 +159,7 @@ impl IglooPrj self.gen_igloo_header(); self.gen_igloo_main(); //self.debugManifests(); - IglooErrType::IGLOO_ERR_NONE + ErrNone } pub fn debugManifests(&self) @@ -175,7 +167,7 @@ impl IglooPrj for target in &self.target_bank { println!("Target manifest:"); - for (key, val) in &target.target_manifest.links + for (key, val) in &target.links { println!("{} = {:?}", key, val); } @@ -213,7 +205,7 @@ impl IglooPrj //sym link gdb scripts let mut gdb_scripts_paths = std::fs::read_dir( &(String::from( - IglooEnvInfo::info() + IglooEnvInfo::get_env_info() .esfd.to_str() .unwrap()) + "/scripts")) .unwrap(); @@ -240,9 +232,9 @@ impl IglooPrj let mut prj_esf_dir = self.project_dir.join("ESF"); - for (sym_dir, loc_in_esf) in &target.target_manifest.links + for (sym_dir, loc_in_esf) in &target.links { - let link_to_dir = IglooEnvInfo::info() + let link_to_dir = IglooEnvInfo::get_env_info() .esfd .join(&loc_in_esf.clone().into_str().unwrap()); std::os::unix::fs::symlink(link_to_dir, prj_esf_dir.join(sym_dir)).unwrap(); @@ -251,16 +243,16 @@ impl IglooPrj self.gen_openocd_config(&target); self.gen_makefile(&target); } - IglooErrType::IGLOO_ERR_NONE + ErrNone } pub fn gen_openocd_config(&self, target: &IglooTarget) -> IglooErrType { - let mut ret: IglooErrType = IglooErrType::IGLOO_ERR_NONE; + let mut ret: IglooErrType = ErrNone; let mut openocd_cfg = self.project_dir.join(".igloo/target"); openocd_cfg.push(&target.name); openocd_cfg.push("scripts"); - openocd_cfg.push(&target.name); + openocd_cfg.push(&self.name); if openocd_cfg.with_extension("cfg").exists() { std::fs::remove_file(openocd_cfg.with_extension("cfg")); @@ -279,14 +271,12 @@ impl IglooPrj writeln!(ocfg_file, "\n# Transport Select").unwrap(); writeln!(ocfg_file, "source [find interface//{}.cfg]", target - .target_manifest .openocd.get("transport_cfg") .unwrap() .clone() .into_str() .unwrap()).unwrap(); writeln!(ocfg_file, "transport select {}", target - .target_manifest .openocd.get("transport") .unwrap() .clone() @@ -296,7 +286,6 @@ impl IglooPrj writeln!(ocfg_file, "\n# Chip Information").unwrap(); writeln!(ocfg_file, "set CHIPNAME {}", target.name); writeln!(ocfg_file, "source [find target//{}.cfg]", target - .target_manifest .openocd.get("chip_name_cfg") .unwrap() .clone() @@ -315,7 +304,7 @@ impl IglooPrj // If the Makefile already exists, trash it if target_root.join("Makefile").exists() { - std::fs::remove_file(target_root.join("Makefile")); + std::fs::remove_file(target_root.join("Makefile")).unwrap(); } // Make our Makefile, set it to append mode @@ -710,11 +699,10 @@ endif"); } Some(v) => { - write!(app_file, "\n\t").unwrap(); + write!(app_file, "\n").unwrap(); for cflag in v.clone().into_array().unwrap() { - writeln!(app_file, "\\").unwrap(); - write!(app_file, "\t{}", cflag).unwrap(); + writeln!(app_file, "\t{}", cflag).unwrap(); } }, } @@ -745,11 +733,10 @@ endif"); } Some(v) => { - write!(app_file, "\n\t").unwrap(); + write!(app_file, "\n").unwrap(); for cflag in v.clone().into_array().unwrap() { - writeln!(app_file, "\\").unwrap(); - write!(app_file, "\t{}", cflag).unwrap(); + writeln!(app_file, "\t{}", cflag).unwrap(); } }, } @@ -780,11 +767,10 @@ endif"); } Some(v) => { - write!(app_file, "\n\t").unwrap(); + write!(app_file, "\n").unwrap(); for cflag in v.clone().into_array().unwrap() { - writeln!(app_file, "\\").unwrap(); - write!(app_file, "\t{}", cflag).unwrap(); + writeln!(app_file, "\t{}", cflag).unwrap(); } }, } @@ -815,11 +801,10 @@ endif"); } Some(v) => { - write!(app_file, "\n\t").unwrap(); + write!(app_file, "\n").unwrap(); for cflag in v.clone().into_array().unwrap() { - writeln!(app_file, "\\").unwrap(); - write!(app_file, "\t{}", cflag).unwrap(); + writeln!(app_file, "\t{}", cflag).unwrap(); } }, } @@ -849,11 +834,10 @@ endif"); } Some(v) => { - write!(app_file, "\n\t").unwrap(); + write!(app_file, "\n").unwrap(); for cflag in v.clone().into_array().unwrap() { - writeln!(app_file, "\\").unwrap(); - write!(app_file, "\t{}", cflag).unwrap(); + writeln!(app_file, "\t{}", cflag).unwrap(); } }, } @@ -883,11 +867,10 @@ endif"); } Some(v) => { - write!(app_file, "\n\t").unwrap(); + write!(app_file, "\n").unwrap(); for cflag in v.clone().into_array().unwrap() { - writeln!(app_file, "\\").unwrap(); - write!(app_file, "\t{}", cflag).unwrap(); + writeln!(app_file, "\t{}", cflag).unwrap(); } }, } @@ -992,13 +975,12 @@ endif\n").unwrap(); } Some(v) => { - write!(app_file, "\n\t").unwrap(); + write!(app_file, "\n").unwrap(); for cflag in v.clone().into_array().unwrap() { if !cflag.to_string().is_empty() { - writeln!(app_file, " \\").unwrap(); - write!(app_file, "\t{}", cflag).unwrap() + writeln!(app_file, "\t{}", cflag).unwrap() } } }, @@ -1033,22 +1015,19 @@ endif\n").unwrap(); } Some(v) => { - write!(app_file, "\n\t").unwrap(); + write!(app_file, "\n").unwrap(); for cflag in v.clone().into_array().unwrap() { if !cflag.to_string().is_empty() { - writeln!(app_file, " \\").unwrap(); - write!(app_file, "\t{}", cflag).unwrap() + writeln!(app_file, "\t{}", cflag).unwrap() } } }, } writeln!(app_file, "\n\nQUOTE:=\"").unwrap(); - - - IglooErrType::IGLOO_ERR_NONE + ErrNone } pub fn gen_igloo_header(&self) -> IglooErrType @@ -1074,7 +1053,7 @@ endif\n").unwrap(); { println!("MCU definition not found in make manifest.\ \nCould not generate igloo.h"); - return IglooErrType::IGLOO_ERR_UNKNOWN + return ErrUnknown } Some(v) => { @@ -1082,13 +1061,13 @@ endif\n").unwrap(); v.to_string()).unwrap(); } } - for inc_file in &target.target_manifest.includes + for inc_file in &target.includes { writeln!(igloo_h_file, "\t#include \"{}\"", inc_file).unwrap(); } writeln!(igloo_h_file, "#endif").unwrap(); } - IglooErrType::IGLOO_ERR_NONE + ErrNone } pub fn gen_igloo_main(&self) -> IglooErrType @@ -1108,113 +1087,7 @@ endif\n").unwrap(); writeln!(igloo_main_c_file, "#include \"igloo.h\"").unwrap(); writeln!(igloo_main_c_file, "\n\nint main()\n{{\n\treturn 0;\n}}").unwrap(); - - IglooErrType::IGLOO_ERR_NONE - } - -} -impl IglooTarget -{ - pub fn default() -> IglooTarget - { - IglooTarget - { - name: String::from(""), - make_manifest: HashMap::default(), - target_manifest: IglooTargetManifest::default(), - } - } - - pub fn from(inst: &Igloo, name_in: String, - target_make_loc: &str, - target_man_loc: &str) -> Result - { - - - // now make man - let mut makefile: HashMap = HashMap::new(); - let mut make_table_head = &target_make_loc[0..target_make_loc.len()]; - let mut b_quit: bool = false; - loop - { - let mut _active_table = inst.make_manifest.get_table(&make_table_head).unwrap(); - for (name, val) in _active_table - { - match val.clone().into_table() - { - Err(_e) => - { - if !makefile.contains_key(&name) - { - makefile.insert(name, val); - } - else - { - let mut newval = val.clone().into_array().unwrap(); - let mut newvec = makefile.get_key_value(&name).unwrap().1.clone().into_array().unwrap(); - newvec.append(&mut newval); - makefile.insert(name, config::Value::from(newvec)); - } - } - Ok(_v) => {} - } - } - match make_table_head.rfind('.') - { - None => b_quit = true, - Some(v) => make_table_head = &make_table_head[0..v], - } - if b_quit - { - break; - } - } - - Ok(IglooTarget - { - name: String::from(name_in), - make_manifest: makefile, - target_manifest: IglooTargetManifest::from(target_man_loc), - - }) - } -} - -impl IglooTargetManifest -{ - pub fn default() -> IglooTargetManifest - { - IglooTargetManifest - { - links: HashMap::default(), - includes: Vec::default(), - openocd: HashMap::default(), - } + ErrNone } - pub fn from(target_man_loc: &str) -> IglooTargetManifest - { - // target man first - let mut target_man = config::Config::new(); - target_man.merge( - config::File::with_name( - IglooEnvInfo::info().esfd.join(target_man_loc) - .to_str().unwrap())) - .unwrap(); - - IglooTargetManifest - { - links: target_man.get_table("esf.links").unwrap(), - includes: target_man.get_table("esf.includes") - .unwrap() - .get("IGLOO_INCLUDES") - .unwrap() - .clone() - .into_array() - .unwrap(), - openocd: target_man.get_table("esf.openocd") - .unwrap(), - } - } } - diff --git a/igloo_core/src/igloo_target.rs b/igloo_core/src/igloo_target.rs new file mode 100644 index 0000000..194cd82 --- /dev/null +++ b/igloo_core/src/igloo_target.rs @@ -0,0 +1,118 @@ +use igloo_base::*; +use igloo_base::IglooErrType::*; + +use crate::config::Config; +use crate::Igloo; +use std::collections::HashMap; +pub struct IglooTarget +{ + // name, links, and includes are extracted from a manifest + pub name: String, + pub links: HashMap, + pub includes: Vec, + pub openocd: HashMap, + pub make_manifest: HashMap, +} + +impl IglooTarget +{ + pub fn default() -> IglooTarget + { + IglooTarget + { + name: String::from(""), + make_manifest: HashMap::default(), + links: HashMap::default(), + includes: Vec::default(), + openocd: HashMap::default(), + } + } + + pub fn from(inst: &Igloo, name_in: String, + target_make_loc: &str, + target_man_loc: &str) -> Result + { + // target man first + let mut target_man = Config::new(); + target_man.merge( + config::File::with_name( + IglooEnvInfo::get_env_info().esfd.join(target_man_loc) + .to_str().unwrap())) + .unwrap(); + + // now make man + let mut makefile: HashMap = HashMap::new(); + let mut make_table_head = &target_make_loc[0..target_make_loc.len()]; + let mut b_quit: bool = false; + loop + { + let mut _active_table = inst.master_make_man.get_table(&make_table_head).unwrap(); + for (name, val) in _active_table + { + match val.clone().into_table() + { + Err(_e) => + { + if !makefile.contains_key(&name) + { + makefile.insert(name, val); + } + else + { + let mut newval = val.clone().into_array().unwrap(); + let mut newvec = makefile.get_key_value(&name).unwrap().1.clone().into_array().unwrap(); + newvec.append(&mut newval); + makefile.insert(name, config::Value::from(newvec)); + } + } + Ok(_v) => {} + } + } + match make_table_head.rfind('.') + { + None => b_quit = true, + Some(v) => make_table_head = &make_table_head[0..v], + } + if b_quit + { + break; + } + } + + Ok(IglooTarget + { + name: String::from(name_in), + make_manifest: makefile, + links: target_man.get_table("esf.links").unwrap(), + includes: target_man.get_table("esf.includes") + .unwrap() + .get("IGLOO_INCLUDES") + .unwrap() + .clone() + .into_array() + .unwrap(), + openocd: target_man.get_table("esf.openocd") + .unwrap(), + }) + } + + /// generate all folders needed for the target + pub fn generate(&self) -> IglooErrType + { + + ErrNone + } + + /// populates all folders needed for the target + pub fn populate(&self) -> IglooErrType + { + ErrNone + } + + /// generates the makefile for a target + /// this will be updated as the user edits their project toml + pub fn generate_makefile(&self) -> IglooErrType + { + ErrNone + } +} diff --git a/igloo_core/src/lib.rs b/igloo_core/src/lib.rs new file mode 100644 index 0000000..4f4a682 --- /dev/null +++ b/igloo_core/src/lib.rs @@ -0,0 +1,149 @@ +extern crate clap; +extern crate config; + +mod igloo_action; +mod igloo_project; +mod igloo_target; + +use igloo_base::*; +use igloo_base::IglooInstType::*; +use igloo_base::IglooErrType::*; +use igloo_cli::*; +use igloo_manifest::*; +use igloo_project::IglooPrj; + +use config::Config; +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} + +/// Igloo should contain a config and any important environment information. +/// Upon running igloo, an instanc is created, env information is stored, and then +/// things happen. +pub struct Igloo +{ + cli_conf: clap::ArgMatches, + env_info: IglooEnvInfo, + master_make_man: Config, + master_target_man: Config, +} + +impl Igloo +{ + /// The new function creates an instance of igloo. The idea is I create an igloo, + /// run start on it so I can collect environment information and process what command + /// the user would like to run, and then I run that command or deal with errors. + /// + /// This function handles all cli input and stores it. It is parsed for errors in the + /// start function. + pub fn new() -> Igloo + { + Igloo + { + env_info: IglooEnvInfo::get_env_info(), + master_make_man: Config::new(), + master_target_man: Config::new(), + cli_conf: igloo_app(), + } + } + + /// The start function processes the command you want igloo to run + /// It theoretically should never return an error. It should just exit. + /// If an error was returned, It was my fault and not the users. + /// It is really only here to help me debug. + /// + /// The Inst Type is only returned for usage outside of this struct. + pub fn start(&mut self) -> Result + { + let mut res: IglooInstType = Null; + // Load manifests first + match get_master_make_manifest(&mut self.master_make_man) + { + ErrNone => (), + v => + { + println!("{:?}", v); + return Err(v) + } + } + match get_master_target_manifest(&mut self.master_target_man) + { + ErrNone => (), + v => + { + println!("{:?}", v); + return Err(v) + }, + } + + // Assign our instance type (new, run, flash, etc..) + match igloo_subcommand(&self.cli_conf) + { + Ok(v) => res = v, + Err(e) => return Err(e), + } + + if res == Null + { + return Err(ErrUnknown) + } + + Ok(res) + } + + /// The run function processes the request from the user. + /// On success, it will give some string indicating the success of the operation. + /// On failure, it will return some error type. + pub fn run(&self, inst_type: IglooInstType) -> Result + { + let mut res_err = ErrNone; + let mut prj: IglooPrj; + loop { match inst_type + { + Null => res_err = ErrNone, + New => + { + let prj_name: &str = self + .cli_conf + .subcommand() + .unwrap().1 + .value_of("project_name") + .unwrap(); + + let target: &str = self + .cli_conf + .subcommand() + .unwrap().1 + .value_of("target") + .unwrap(); + let res_err = igloo_action::new( + self, prj_name, target); + if res_err != ErrNone + { + return Err(res_err) + } + } + IGLOO_FLASH => + { + + } + IGLOO_RUN => + { + + } + _ => println!("Unhandled case: {:?}", inst_type), + } break; } + if res_err == ErrNone + { + Ok(String::from("We won!")) + } + else + { + Err(res_err) + } + } +} diff --git a/igloo_make/Cargo.toml b/igloo_make/Cargo.toml new file mode 100644 index 0000000..d298b8d --- /dev/null +++ b/igloo_make/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "igloo_make" +version = "0.1.0" +authors = ["Penguin "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +igloo_base = { path = "../igloo_base" } \ No newline at end of file diff --git a/igloo_make/src/lib.rs b/igloo_make/src/lib.rs new file mode 100644 index 0000000..58d05b0 --- /dev/null +++ b/igloo_make/src/lib.rs @@ -0,0 +1,9 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} + +use igloo_base; diff --git a/igloo_manifest/Cargo.toml b/igloo_manifest/Cargo.toml new file mode 100644 index 0000000..5a07205 --- /dev/null +++ b/igloo_manifest/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "igloo_manifest" +version = "0.1.0" +authors = ["Penguin "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +igloo_base = { path = "../igloo_base" } +config = "0.10" diff --git a/igloo_manifest/src/lib.rs b/igloo_manifest/src/lib.rs new file mode 100644 index 0000000..e5b20c0 --- /dev/null +++ b/igloo_manifest/src/lib.rs @@ -0,0 +1,122 @@ +extern crate config; + +use igloo_base::*; +use igloo_base::IglooErrType::*; +use config::Config; + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} + +/// Igloo Manifest -- Responsible for all lookups in manifest files +pub fn get_master_make_manifest(man: &mut Config) -> IglooErrType +{ + let mut ret: IglooErrType = ErrNone; + match man.merge( + config::File::with_name( + IglooEnvInfo::get_env_info().esfd.join("manifest/make-manifest.toml") + .to_str() + .unwrap())) + { + Ok(_v) => (), + Err(e) => + { + println!("Error: {:?}", e); + ret = FailedToLoadMasterMakeManifest; + } + } + + ret +} + +pub fn get_master_target_manifest(man: &mut Config) -> IglooErrType +{ + let mut ret: IglooErrType = ErrNone; + match man.merge( + config::File::with_name( + IglooEnvInfo::get_env_info().esfd.join("manifest/target-manifest.toml") + .to_str() + .unwrap())) + { + Ok(_v) => (), + Err(e) => + { + println!("Error: {:?}", e); + ret = FailedToLoadMasterTargetManifest; + } + } + + ret +} +/// master_mm -- Master Make Manifest +/// master_tm -- Master Target Manifest +/// name -- name of target +pub fn target_exists(master_mm: &Config, master_tm: &Config, name: &str) + -> Result +{ + let mut ret: bool = true; + if name.is_empty() + { + return Err(InvalidTarget) + } + + match master_mm.get_table("target.make") + { + Ok(v) => + { + match v.get(name) + { + Some(v) => + { + println!("target.make entry for \"{}\" exists!", v); + } + None => + { + println!("target.make entry for \"{}\" does not exist", name); + ret = false; + } + } + + } + Err(e) => + { + println!("{:?}", e); + return Err(FailedToLoadMasterMakeManifest) + } + } + + if !ret + { + return Ok(ret) + } + + let target_table = master_tm.get_table("target.manifest"); + match target_table + { + Ok(v) => + { + match v.get(name) + { + Some(v) => + { + println!("target.manifest entry for \"{}\" exists!", v); + } + None => + { + ret = false; + } + } + } + Err(e) => + { + println!("{:?}", e); + return Err(FailedToLoadMasterTargetManifest) + } + } + + Ok(ret) +} diff --git a/src/igloo.rs b/src/igloo.rs deleted file mode 100644 index 794fde9..0000000 --- a/src/igloo.rs +++ /dev/null @@ -1,274 +0,0 @@ -use crate::igloo_action::IglooAction; -use crate::igloo_prj::IglooPrj; -#[derive(Debug)] -#[derive(PartialEq)] -pub enum IglooInstType -{ - IGLOO_NULL = -1, - IGLOO_NEW = 0, - IGLOO_RUN = 1, - IGLOO_FLASH = 2, - IGLOO_DEBUG = 3, - IGLOO_CLEAN = 4, - IGLOO_ERASE = 5, - IGLOO_GENDOC = 6, -} - -#[derive(Debug)] -#[derive(PartialEq)] -pub enum IglooErrType -{ - IGLOO_ERR_NONE = 0, - IGLOO_ERR_UNKNOWN = 1, - IGLOO_CONFIG_NOT_FOUND = 2, - IGLOO_CONFIG_FOUND = 3, - IGLOO_UNKNOWN_INST_TYPE = 4, - IGLOO_NEW_CALLED_INSIDE_PRJ = 5, - IGLOO_FOLDER_ALREADY_EXISTS = 6, - IGLOO_INVALID_PROJECT_NAME = 7, - IGLOO_ENV_INFO_INVALID = 8, - IGLOO_INVALID_TARGET = 9, - IGLOO_FAILED_TO_LOAD_MAKE_MAN = 10, - IGLOO_FAILED_TO_LOAD_TARG_MAN = 11, - IGLOO_PRJ_SCRIPTS_DIR_NOT_FOUND = 12, -} - -#[derive(Debug)] -#[derive(PartialEq)] -#[derive(Clone)] -pub struct IglooEnvInfo -{ - // Current Working Directory - pub cwd: std::path::PathBuf, - // Home Directory - pub hd: std::path::PathBuf, - // ESF Directory - pub esfd: std::path::PathBuf, -} - -use IglooInstType::*; -use IglooErrType::*; - -/// Igloo should contain a config and any important environment information. -/// Upon running igloo, an instanc is created, env information is stored, and then -/// things happen. -pub struct Igloo -{ - cli_conf: clap::ArgMatches, - pub env_info: IglooEnvInfo, - pub make_manifest: config::Config, - pub target_manifest: config::Config, -} - -impl Igloo -{ - /// The new function creates an instance of igloo. The idea is I create an igloo, - /// run start on it so I can collect environment information and process what command - /// the user would like to run, and then I run that command or deal with errors. - /// - /// This function handles all cli input and stores it. It is parsed for errors in the - /// start function. - pub fn new() -> Igloo - { - Igloo - { - env_info: IglooEnvInfo::info(), - make_manifest: config::Config::new(), - target_manifest: config::Config::new(), - cli_conf: clap::App::new("igloo") - .about(clap::crate_description!()) - .version(clap::crate_version!()) - .setting(clap::AppSettings::SubcommandRequiredElseHelp) - .subcommand( - clap::App::new("new") - .about("Creates a new igloo project") - .arg( - clap::Arg::new("project_name") - .required(true) - .about("The name of the project to be created"), - ) - .arg( - clap::Arg::new("target") - .required(true) - .about("MCU Target") - .short('t') - .long("target") - .takes_value(true)), - ) - .subcommand( - clap::App::new("run") - .about("Compiles if needed, Flashes mcu and runs \ - current project on default target") - .arg( - clap::Arg::new("build_type") - .required(false) - .about("Release or Debug build type\n\ - Defaults to Debug"), - ), - ) - .subcommand( - clap::App::new("flash") - .about("Flashes target mcu or multiple mcus") - .arg( - clap::Arg::new("build_type") - .required(false) - .about("Release or Debug build type\nDefaults to Debug"), - ), - ) - .subcommand( - clap::App::new("clean") - .about("Cleans project build files") - ) - .subcommand( - clap::App::new("erase") - .about("Erases flash from target mcu or target mcus") - ) - .get_matches() - } - } - - /// The start function processes the command you want igloo to run - /// It theoretically should never return an error. It should just exit. - /// If an error was returned, It was my fault and not the users. - /// It is really only here to help me debug. - /// - /// The Inst Type is only returned for usage outside of this struct. - pub fn start(&mut self) -> Result - { - let mut res_error = IGLOO_ERR_NONE; - let mut res_type = IGLOO_NULL; - // Load manifests first - self.make_manifest.merge( - config::File::with_name( - IglooEnvInfo::info().esfd.join("manifest/make-manifest.toml") - .to_str() - .unwrap())) - .unwrap(); - self.target_manifest.merge( - config::File::with_name( - IglooEnvInfo::info().esfd.join("manifest/target-manifest.toml") - .to_str() - .unwrap())) - .unwrap(); - match self.cli_conf.subcommand_name() - { - Some("new") => - { - println!("Igloo new was called!"); - res_type = IglooInstType::IGLOO_NEW; - } - Some("run") => - { - println!("Igloo run was called!"); - res_type = IglooInstType::IGLOO_RUN; - } - Some("flash") => - { - println!("Igloo flash was called!"); - res_type = IglooInstType::IGLOO_FLASH; - } - Some("erase") => - { - println!("Igloo erase was called!"); - res_type = IglooInstType::IGLOO_ERASE; - } - None => unreachable!(), - _ => unreachable!(), - } - if res_type != IglooInstType::IGLOO_NULL - { - Ok(res_type) - } - else - { - Err(res_error) - } - } - - /// The run function processes the request from the user. - /// On success, it will give some string indicating the success of the operation. - /// On failure, it will return some error type. - pub fn run(&self, inst_type: IglooInstType) -> Result - { - let mut res_err = IGLOO_ERR_NONE; - let mut prj: IglooPrj; - loop { match inst_type - { - IGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN, - IGLOO_NEW => - { - if self.cli_conf.subcommand().unwrap().0 == "new" - { - let prj_name: &str = self - .cli_conf - .subcommand() - .unwrap().1 - .value_of("project_name") - .unwrap(); - - let target: &str = self - .cli_conf - .subcommand() - .unwrap().1 - .value_of("target") - .unwrap(); - let res_err = IglooAction::new( - self, prj_name, target); - if res_err != IglooErrType::IGLOO_ERR_NONE - { - return Err(res_err) - } - } - else - { - - } - - } - IGLOO_FLASH => - { - - } - IGLOO_RUN => - { - - } - _ => println!("Unhandled case: {:?}", inst_type), - } break; } - if res_err == IGLOO_ERR_NONE - { - Ok(String::from("We won!")) - } - else - { - Err(res_err) - } - } -} - -impl IglooEnvInfo -{ - pub fn info() -> IglooEnvInfo - { - IglooEnvInfo - { - cwd: std::env::current_dir().unwrap(), - hd: std::env::home_dir().unwrap(), - esfd: match std::env::var("ESF_DIR") - { - Ok(v) => - { - std::path::PathBuf::from(&v.to_owned()) - } - Err(e) => - { - // Note: Need to change new to return errors - // instead of exiting early - println!("Error: $ESF_DIR not defined as an environment\ - variable -- {:?}", e); - std::process::exit(1); - } - } - } - } -} diff --git a/src/igloo_action.rs b/src/igloo_action.rs deleted file mode 100644 index 57e423d..0000000 --- a/src/igloo_action.rs +++ /dev/null @@ -1,51 +0,0 @@ -pub mod IglooAction -{ - use crate::igloo_manifest::IglooManifest; - use crate::igloo::{Igloo, IglooErrType, IglooEnvInfo}; - use crate::igloo_prj::IglooPrj; - - pub fn run(prj_name: &str, target: &str) -> IglooErrType - { - let res_err: IglooErrType = IglooErrType::IGLOO_ERR_NONE; - res_err - } - - pub fn new(inst: &Igloo, prj_name: &str, target: &str) - -> IglooErrType - { - let mut res_err: IglooErrType = IglooErrType::IGLOO_ERR_NONE; - /// Check if we are already inside of an igloo project - /// Creating an igloo project inside an igloo project - /// is a no no - if std::path::Path::new(".igloo").exists() - { - res_err = IglooErrType::IGLOO_NEW_CALLED_INSIDE_PRJ; - return res_err - } - /// Check if the project folder already exists - /// Don't want to accidentally overwrite anything - if std::path::Path::new(prj_name).exists() - { - res_err = IglooErrType::IGLOO_FOLDER_ALREADY_EXISTS; - return res_err - } - - let mut project = IglooPrj::new(inst, prj_name, target); - match project - { - Err(e) => - { - println!("Error spawning project: {:?}", e); - res_err = e; - return res_err - } - _ => (), - } - let res_err = project.unwrap().populate(); - if res_err != IglooErrType::IGLOO_ERR_NONE - { - return res_err - } - res_err - } -} diff --git a/src/igloo_manifest.rs b/src/igloo_manifest.rs deleted file mode 100644 index 8b3c522..0000000 --- a/src/igloo_manifest.rs +++ /dev/null @@ -1,74 +0,0 @@ -/// Igloo Manifest -- Responsible for all lookups in manifest files -pub mod IglooManifest -{ - use crate::igloo::{Igloo, IglooErrType, IglooEnvInfo}; - pub fn target_exists(inst: &Igloo, name: &str) -> Result - { - let mut ret: bool = true; - let mut res_err = IglooErrType::IGLOO_ERR_NONE; - if name.is_empty() - { - return Err(IglooErrType::IGLOO_INVALID_TARGET) - } - - let make_table = inst.target_manifest.get_table("target.make"); - match make_table - { - Ok(v) => - { - match v.get(name) - { - Some(v) => - { - println!("target.make entry for \"{}\" exists!", name); - } - None => - { - println!("target.make entry for \"{}\" does not exist", name); - ret = false; - } - } - - } - Err(e) => - { - println!("{:?}", e); - return Err(IglooErrType::IGLOO_FAILED_TO_LOAD_MAKE_MAN) - } - } - - if !ret - { - return Ok(ret) - } - - let target_table = inst.target_manifest.get_table("target.manifest"); - match target_table - { - Ok(v) => - { - match v.get(name) - { - Some(v) => - { - println!("target.manifest entry for \"{}\" exists!", name); - } - None => - { - ret = false; - } - } - } - Err(e) => - { - println!("{:?}", e); - return Err(IglooErrType::IGLOO_FAILED_TO_LOAD_TARG_MAN) - } - } - - Ok(ret) - } - - - -} diff --git a/src/main.rs b/src/main.rs index 6dd63ad..2b0f1c1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,14 +1,18 @@ #![allow(warnings)] extern crate clap; extern crate config; -mod igloo; -mod igloo_action; -mod igloo_prj; -mod igloo_manifest; +use config::Config; +use clap::{Arg, App, AppSettings, ArgMatches}; + +use igloo_core::{Igloo, IglooErrType, IglooInstType}; +use igloo_cli; +use igloo_make; +use igloo_manifest; +use igloo_agent; fn main() { - let mut ig = igloo::Igloo::new(); + let mut ig = Igloo::new(); let _start_ret = match ig.start() { Ok(it) => diff --git a/target/release/.fingerprint/atty-762b111f8be85311/dep-lib-atty b/target/debug/.fingerprint/atty-c2fde9dee18b37f1/dep-lib-atty similarity index 100% rename from target/release/.fingerprint/atty-762b111f8be85311/dep-lib-atty rename to target/debug/.fingerprint/atty-c2fde9dee18b37f1/dep-lib-atty diff --git a/target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/invoked.timestamp b/target/debug/.fingerprint/atty-c2fde9dee18b37f1/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/invoked.timestamp rename to target/debug/.fingerprint/atty-c2fde9dee18b37f1/invoked.timestamp diff --git a/target/debug/.fingerprint/atty-c2fde9dee18b37f1/lib-atty b/target/debug/.fingerprint/atty-c2fde9dee18b37f1/lib-atty new file mode 100644 index 0000000..8930441 --- /dev/null +++ b/target/debug/.fingerprint/atty-c2fde9dee18b37f1/lib-atty @@ -0,0 +1 @@ +011ea0a5766ad4a0 \ No newline at end of file diff --git a/target/debug/.fingerprint/atty-c2fde9dee18b37f1/lib-atty.json b/target/debug/.fingerprint/atty-c2fde9dee18b37f1/lib-atty.json new file mode 100644 index 0000000..3be87b8 --- /dev/null +++ b/target/debug/.fingerprint/atty-c2fde9dee18b37f1/lib-atty.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":10792472713283433088,"profile":6299028598154287785,"path":6502263987148761534,"deps":[[5317750649359053169,"libc",false,17504418386403226333]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/atty-c2fde9dee18b37f1/dep-lib-atty"}}],"rustflags":[],"metadata":2329458237537140231,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap-438ee09a7ce7db16/dep-lib-clap b/target/debug/.fingerprint/clap-4a724467a41df761/dep-lib-clap similarity index 100% rename from target/release/.fingerprint/clap-438ee09a7ce7db16/dep-lib-clap rename to target/debug/.fingerprint/clap-4a724467a41df761/dep-lib-clap diff --git a/target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/invoked.timestamp b/target/debug/.fingerprint/clap-4a724467a41df761/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/invoked.timestamp rename to target/debug/.fingerprint/clap-4a724467a41df761/invoked.timestamp diff --git a/target/debug/.fingerprint/clap-4a724467a41df761/lib-clap b/target/debug/.fingerprint/clap-4a724467a41df761/lib-clap new file mode 100644 index 0000000..8b9dee6 --- /dev/null +++ b/target/debug/.fingerprint/clap-4a724467a41df761/lib-clap @@ -0,0 +1 @@ +ca8eed9a45919af0 \ No newline at end of file diff --git a/target/debug/.fingerprint/clap-4a724467a41df761/lib-clap.json b/target/debug/.fingerprint/clap-4a724467a41df761/lib-clap.json new file mode 100644 index 0000000..7a260c5 --- /dev/null +++ b/target/debug/.fingerprint/clap-4a724467a41df761/lib-clap.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[\"atty\", \"cargo\", \"clap_derive\", \"color\", \"default\", \"derive\", \"lazy_static\", \"std\", \"strsim\", \"suggestions\", \"termcolor\"]","target":229160480527202769,"profile":6299028598154287785,"path":3669366453960628055,"deps":[[573161692746345945,"clap_derive",false,7963116697133191406],[769499514241923581,"strsim",false,14162124977035674130],[4117749705314174326,"bitflags",false,6071948545510077164],[8536350174477403560,"lazy_static",false,5920138057679276851],[8898714657973812811,"indexmap",false,8697997005168360071],[10632722147547604258,"unicode_width",false,2429939022793102576],[11109407199266334614,"termcolor",false,14536721510233388105],[15251456120363369268,"atty",false,11589004798948548097],[16345904869059864303,"textwrap",false,14244020469243788216],[17564442112974139928,"os_str_bytes",false,3535731701439882938],[18026345993996883719,"vec_map",false,8808606242575555115]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/clap-4a724467a41df761/dep-lib-clap"}}],"rustflags":[],"metadata":18413529249576532139,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/dep-lib-aho_corasick b/target/debug/.fingerprint/directories-54e89769184d2106/dep-lib-directories similarity index 100% rename from target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/dep-lib-aho_corasick rename to target/debug/.fingerprint/directories-54e89769184d2106/dep-lib-directories diff --git a/target/release/.fingerprint/atty-762b111f8be85311/invoked.timestamp b/target/debug/.fingerprint/directories-54e89769184d2106/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/atty-762b111f8be85311/invoked.timestamp rename to target/debug/.fingerprint/directories-54e89769184d2106/invoked.timestamp diff --git a/target/debug/.fingerprint/directories-54e89769184d2106/lib-directories b/target/debug/.fingerprint/directories-54e89769184d2106/lib-directories new file mode 100644 index 0000000..86c86b6 --- /dev/null +++ b/target/debug/.fingerprint/directories-54e89769184d2106/lib-directories @@ -0,0 +1 @@ +fa980ad7e652ef4c \ No newline at end of file diff --git a/target/debug/.fingerprint/directories-54e89769184d2106/lib-directories.json b/target/debug/.fingerprint/directories-54e89769184d2106/lib-directories.json new file mode 100644 index 0000000..cb2404d --- /dev/null +++ b/target/debug/.fingerprint/directories-54e89769184d2106/lib-directories.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":17898517816709299640,"profile":6299028598154287785,"path":8728092032768182756,"deps":[[9649018296203476292,"dirs_sys",false,16263667843839518962]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/directories-54e89769184d2106/dep-lib-directories"}}],"rustflags":[],"metadata":931290570756584624,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/dep-lib-arrayvec b/target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/dep-lib-dirs-sys similarity index 100% rename from target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/dep-lib-arrayvec rename to target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/dep-lib-dirs-sys diff --git a/target/release/.fingerprint/autocfg-062c362b0e560242/invoked.timestamp b/target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/autocfg-062c362b0e560242/invoked.timestamp rename to target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/invoked.timestamp diff --git a/target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/lib-dirs-sys b/target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/lib-dirs-sys new file mode 100644 index 0000000..49464dd --- /dev/null +++ b/target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/lib-dirs-sys @@ -0,0 +1 @@ +f268ff40bc27b4e1 \ No newline at end of file diff --git a/target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/lib-dirs-sys.json b/target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/lib-dirs-sys.json new file mode 100644 index 0000000..a4f4a9c --- /dev/null +++ b/target/debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/lib-dirs-sys.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":6656584412601499904,"profile":6299028598154287785,"path":13971011078393250122,"deps":[[5317750649359053169,"libc",false,17504418386403226333]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dirs-sys-d07a5a7ba7cf70cd/dep-lib-dirs-sys"}}],"rustflags":[],"metadata":9863373507860298850,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-062c362b0e560242/dep-lib-autocfg b/target/debug/.fingerprint/error-chain-a309a28557f9e43e/dep-lib-error-chain similarity index 100% rename from target/release/.fingerprint/autocfg-062c362b0e560242/dep-lib-autocfg rename to target/debug/.fingerprint/error-chain-a309a28557f9e43e/dep-lib-error-chain diff --git a/target/release/.fingerprint/bitflags-06e1e7e4c677a486/invoked.timestamp b/target/debug/.fingerprint/error-chain-a309a28557f9e43e/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/bitflags-06e1e7e4c677a486/invoked.timestamp rename to target/debug/.fingerprint/error-chain-a309a28557f9e43e/invoked.timestamp diff --git a/target/debug/.fingerprint/error-chain-a309a28557f9e43e/lib-error-chain b/target/debug/.fingerprint/error-chain-a309a28557f9e43e/lib-error-chain new file mode 100644 index 0000000..47a1322 --- /dev/null +++ b/target/debug/.fingerprint/error-chain-a309a28557f9e43e/lib-error-chain @@ -0,0 +1 @@ +c63db97107940f49 \ No newline at end of file diff --git a/target/debug/.fingerprint/error-chain-a309a28557f9e43e/lib-error-chain.json b/target/debug/.fingerprint/error-chain-a309a28557f9e43e/lib-error-chain.json new file mode 100644 index 0000000..d604102 --- /dev/null +++ b/target/debug/.fingerprint/error-chain-a309a28557f9e43e/lib-error-chain.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":14517543427096474932,"profile":6299028598154287785,"path":10257279714125279321,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/error-chain-a309a28557f9e43e/dep-lib-error-chain"}}],"rustflags":[],"metadata":7997956376172494424,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-ff7f5482904c4de3/invoked.timestamp b/target/debug/.fingerprint/igloo-4810a9cc2c013b08/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/bitflags-ff7f5482904c4de3/invoked.timestamp rename to target/debug/.fingerprint/igloo-4810a9cc2c013b08/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo-4810a9cc2c013b08/output-test-bin-igloo b/target/debug/.fingerprint/igloo-4810a9cc2c013b08/output-test-bin-igloo new file mode 100644 index 0000000..ad8ef69 --- /dev/null +++ b/target/debug/.fingerprint/igloo-4810a9cc2c013b08/output-test-bin-igloo @@ -0,0 +1,3 @@ +{"message":"failed to resolve: use of undeclared type or module `Igloo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":106,"byte_end":111,"line_start":8,"line_end":8,"column_start":15,"column_end":20,"is_primary":true,"text":[{"text":"\tlet mut ig = Igloo::new();","highlight_start":15,"highlight_end":20}],"label":"use of undeclared type or module `Igloo`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `Igloo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:8:15\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut ig = Igloo::new();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `Igloo`\u001b[0m\n\n"} +{"message":"aborting due to previous error","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to previous error\u001b[0m\n\n"} +{"message":"For more information about this error, try `rustc --explain E0433`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0433`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo-6c5e487114b79d00/output-test-bin-igloo b/target/debug/.fingerprint/igloo-6c5e487114b79d00/output-test-bin-igloo new file mode 100644 index 0000000..f7db135 --- /dev/null +++ b/target/debug/.fingerprint/igloo-6c5e487114b79d00/output-test-bin-igloo @@ -0,0 +1,8 @@ +{"message":"cannot find function `igloo_app` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"src/igloo.rs","byte_start":1883,"byte_end":1892,"line_start":74,"line_end":74,"column_start":14,"column_end":23,"is_primary":true,"text":[{"text":"\t\t\tcli_conf: igloo_app(),","highlight_start":14,"highlight_end":23}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find function `igloo_app` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/igloo.rs:74:14\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m74\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m cli_conf: igloo_app(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"src/igloo.rs","byte_start":2325,"byte_end":2339,"line_start":86,"line_end":86,"column_start":23,"column_end":37,"is_primary":true,"text":[{"text":"\t\tlet mut res_error = IGLOO_ERR_NONE;","highlight_start":23,"highlight_end":37}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this unit variant","code":null,"level":"help","spans":[{"file_name":"src/igloo.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_action::IglooAction;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_manifest::IglooManifest::IglooErrType::IGLOO_ERR_NONE;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/igloo.rs:86:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m86\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_error = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this unit variant\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_manifest::IglooManifest::IglooErrType::IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_NULL` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"src/igloo.rs","byte_start":2362,"byte_end":2372,"line_start":87,"line_end":87,"column_start":22,"column_end":32,"is_primary":true,"text":[{"text":"\t\tlet mut res_type = IGLOO_NULL;","highlight_start":22,"highlight_end":32}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this unit variant","code":null,"level":"help","spans":[{"file_name":"src/igloo.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_action::IglooAction;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo::IglooInstType::IGLOO_NULL;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_NULL` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/igloo.rs:87:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m87\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_type = IGLOO_NULL;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this unit variant\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo::IglooInstType::IGLOO_NULL;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"src/igloo.rs","byte_start":3678,"byte_end":3692,"line_start":141,"line_end":141,"column_start":21,"column_end":35,"is_primary":true,"text":[{"text":"\t\tlet mut res_err = IGLOO_ERR_NONE;","highlight_start":21,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this unit variant","code":null,"level":"help","spans":[{"file_name":"src/igloo.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_action::IglooAction;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_manifest::IglooManifest::IglooErrType::IGLOO_ERR_NONE;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/igloo.rs:141:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m141\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this unit variant\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_manifest::IglooManifest::IglooErrType::IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_UNKNOWN` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"src/igloo.rs","byte_start":3775,"byte_end":3792,"line_start":145,"line_end":145,"column_start":28,"column_end":45,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,","highlight_start":28,"highlight_end":45}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this unit variant","code":null,"level":"help","spans":[{"file_name":"src/igloo.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_action::IglooAction;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_manifest::IglooManifest::IglooErrType::IGLOO_ERR_UNKNOWN;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_UNKNOWN` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/igloo.rs:145:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m145\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this unit variant\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_manifest::IglooManifest::IglooErrType::IGLOO_ERR_UNKNOWN;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"src/igloo.rs","byte_start":4464,"byte_end":4478,"line_start":186,"line_end":186,"column_start":17,"column_end":31,"is_primary":true,"text":[{"text":"\t\tif res_err == IGLOO_ERR_NONE","highlight_start":17,"highlight_end":31}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this unit variant","code":null,"level":"help","spans":[{"file_name":"src/igloo.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_action::IglooAction;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_manifest::IglooManifest::IglooErrType::IGLOO_ERR_NONE;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/igloo.rs:186:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m186\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err == IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this unit variant\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_manifest::IglooManifest::IglooErrType::IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"aborting due to 6 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 6 previous errors\u001b[0m\n\n"} +{"message":"For more information about this error, try `rustc --explain E0425`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0425`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo-6c5e487114b79d00/test-bin-igloo b/target/debug/.fingerprint/igloo-6c5e487114b79d00/test-bin-igloo index 1f8bb0c..e69de29 100644 --- a/target/debug/.fingerprint/igloo-6c5e487114b79d00/test-bin-igloo +++ b/target/debug/.fingerprint/igloo-6c5e487114b79d00/test-bin-igloo @@ -1 +0,0 @@ -cacea1ce8d3496e9 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-agent-b4311263192e6456/bin-igloo-agent b/target/debug/.fingerprint/igloo-agent-b4311263192e6456/bin-igloo-agent new file mode 100644 index 0000000..2e70216 --- /dev/null +++ b/target/debug/.fingerprint/igloo-agent-b4311263192e6456/bin-igloo-agent @@ -0,0 +1 @@ +aa1d270fe27c31b9 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-agent-b4311263192e6456/bin-igloo-agent.json b/target/debug/.fingerprint/igloo-agent-b4311263192e6456/bin-igloo-agent.json new file mode 100644 index 0000000..6025254 --- /dev/null +++ b/target/debug/.fingerprint/igloo-agent-b4311263192e6456/bin-igloo-agent.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":11472144369123049141,"profile":18074012566298724745,"path":15189186052818138501,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo-agent-b4311263192e6456/dep-bin-igloo-agent"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-agent-b4311263192e6456/dep-bin-igloo-agent b/target/debug/.fingerprint/igloo-agent-b4311263192e6456/dep-bin-igloo-agent new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/target/debug/.fingerprint/igloo-agent-b4311263192e6456/dep-bin-igloo-agent differ diff --git a/target/release/.fingerprint/cfg-if-0f89700f04afbfc5/invoked.timestamp b/target/debug/.fingerprint/igloo-agent-b4311263192e6456/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/cfg-if-0f89700f04afbfc5/invoked.timestamp rename to target/debug/.fingerprint/igloo-agent-b4311263192e6456/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/dep-test-bin-igloo-agent b/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/dep-test-bin-igloo-agent new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/dep-test-bin-igloo-agent differ diff --git a/target/release/.fingerprint/clap-438ee09a7ce7db16/invoked.timestamp b/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/clap-438ee09a7ce7db16/invoked.timestamp rename to target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/test-bin-igloo-agent b/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/test-bin-igloo-agent new file mode 100644 index 0000000..70fd4ad --- /dev/null +++ b/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/test-bin-igloo-agent @@ -0,0 +1 @@ +3da55aea6c1517de \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/test-bin-igloo-agent.json b/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/test-bin-igloo-agent.json new file mode 100644 index 0000000..32cf1a4 --- /dev/null +++ b/target/debug/.fingerprint/igloo-agent-c5af17c475f537b5/test-bin-igloo-agent.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":11472144369123049141,"profile":10655494245791646288,"path":15189186052818138501,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo-agent-c5af17c475f537b5/dep-test-bin-igloo-agent"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/dep-lib-igloo-cli b/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/dep-lib-igloo-cli new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/dep-lib-igloo-cli differ diff --git a/target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/invoked.timestamp b/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/invoked.timestamp rename to target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/lib-igloo-cli b/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/lib-igloo-cli new file mode 100644 index 0000000..44ac2a3 --- /dev/null +++ b/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/lib-igloo-cli @@ -0,0 +1 @@ +ba9d0821cf1c98df \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/lib-igloo-cli.json b/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/lib-igloo-cli.json new file mode 100644 index 0000000..4e6dca1 --- /dev/null +++ b/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/lib-igloo-cli.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":780103669763259699,"profile":18074012566298724745,"path":15234236701973193484,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo-cli-4fb621101fa793e7/dep-lib-igloo-cli"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/output-lib-igloo-cli b/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/output-lib-igloo-cli new file mode 100644 index 0000000..ff19b3e --- /dev/null +++ b/target/debug/.fingerprint/igloo-cli-4fb621101fa793e7/output-lib-igloo-cli @@ -0,0 +1,2 @@ +{"message":"variant `IGLOO_CLI` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"igloo-cli/src/lib.rs","byte_start":117,"byte_end":126,"line_start":11,"line_end":11,"column_start":2,"column_end":11,"is_primary":true,"text":[{"text":"\tIGLOO_CLI = 0,","highlight_start":2,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"igloo-cli/src/lib.rs","byte_start":117,"byte_end":126,"line_start":11,"line_end":11,"column_start":2,"column_end":11,"is_primary":true,"text":[{"text":"\tIGLOO_CLI = 0,","highlight_start":2,"highlight_end":11}],"label":null,"suggested_replacement":"IglooCli","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variant `IGLOO_CLI` should have an upper camel case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo-cli/src/lib.rs:11:2\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m11\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_CLI = 0,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `IglooCli`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(non_camel_case_types)]` on by default\u001b[0m\n\n"} +{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/dep-test-lib-igloo-cli b/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/dep-test-lib-igloo-cli new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/dep-test-lib-igloo-cli differ diff --git a/target/release/.fingerprint/config-920fae297337ba9d/invoked.timestamp b/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/config-920fae297337ba9d/invoked.timestamp rename to target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/output-test-lib-igloo-cli b/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/output-test-lib-igloo-cli new file mode 100644 index 0000000..ff19b3e --- /dev/null +++ b/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/output-test-lib-igloo-cli @@ -0,0 +1,2 @@ +{"message":"variant `IGLOO_CLI` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"igloo-cli/src/lib.rs","byte_start":117,"byte_end":126,"line_start":11,"line_end":11,"column_start":2,"column_end":11,"is_primary":true,"text":[{"text":"\tIGLOO_CLI = 0,","highlight_start":2,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"igloo-cli/src/lib.rs","byte_start":117,"byte_end":126,"line_start":11,"line_end":11,"column_start":2,"column_end":11,"is_primary":true,"text":[{"text":"\tIGLOO_CLI = 0,","highlight_start":2,"highlight_end":11}],"label":null,"suggested_replacement":"IglooCli","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variant `IGLOO_CLI` should have an upper camel case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo-cli/src/lib.rs:11:2\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m11\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_CLI = 0,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `IglooCli`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(non_camel_case_types)]` on by default\u001b[0m\n\n"} +{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/test-lib-igloo-cli b/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/test-lib-igloo-cli new file mode 100644 index 0000000..ff48a86 --- /dev/null +++ b/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/test-lib-igloo-cli @@ -0,0 +1 @@ +7b13bce8357aa713 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/test-lib-igloo-cli.json b/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/test-lib-igloo-cli.json new file mode 100644 index 0000000..6e52578 --- /dev/null +++ b/target/debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/test-lib-igloo-cli.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":780103669763259699,"profile":10655494245791646288,"path":15234236701973193484,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo-cli-74f5cf462b8c4f61/dep-test-lib-igloo-cli"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/dep-lib-igloo-core b/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/dep-lib-igloo-core new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/dep-lib-igloo-core differ diff --git a/target/release/.fingerprint/heck-1d4454dbf81ee16c/invoked.timestamp b/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/heck-1d4454dbf81ee16c/invoked.timestamp rename to target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/lib-igloo-core b/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/lib-igloo-core new file mode 100644 index 0000000..6e699bf --- /dev/null +++ b/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/lib-igloo-core @@ -0,0 +1 @@ +68e8806f188545d0 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/lib-igloo-core.json b/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/lib-igloo-core.json new file mode 100644 index 0000000..9ac7605 --- /dev/null +++ b/target/debug/.fingerprint/igloo-core-62cf6b6961d79de2/lib-igloo-core.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":1376020904836481817,"profile":18074012566298724745,"path":2400087433830613284,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo-core-62cf6b6961d79de2/dep-lib-igloo-core"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/dep-test-lib-igloo-core b/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/dep-test-lib-igloo-core new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/dep-test-lib-igloo-core differ diff --git a/target/release/.fingerprint/igloo-e77f2c6e61152a46/invoked.timestamp b/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/igloo-e77f2c6e61152a46/invoked.timestamp rename to target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/test-lib-igloo-core b/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/test-lib-igloo-core new file mode 100644 index 0000000..b99c2f8 --- /dev/null +++ b/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/test-lib-igloo-core @@ -0,0 +1 @@ +467b910dee1ec546 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/test-lib-igloo-core.json b/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/test-lib-igloo-core.json new file mode 100644 index 0000000..05f293d --- /dev/null +++ b/target/debug/.fingerprint/igloo-core-641f6ae036aa1aa6/test-lib-igloo-core.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":1376020904836481817,"profile":10655494245791646288,"path":2400087433830613284,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo-core-641f6ae036aa1aa6/dep-test-lib-igloo-core"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/dep-lib-igloo-manifest b/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/dep-lib-igloo-manifest new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/dep-lib-igloo-manifest differ diff --git a/target/release/.fingerprint/indexmap-5767be7128df3faa/invoked.timestamp b/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/indexmap-5767be7128df3faa/invoked.timestamp rename to target/debug/.fingerprint/igloo-manifest-adeea1a769817567/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/lib-igloo-manifest b/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/lib-igloo-manifest new file mode 100644 index 0000000..f8569b0 --- /dev/null +++ b/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/lib-igloo-manifest @@ -0,0 +1 @@ +b6a82c5962a9d5ce \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/lib-igloo-manifest.json b/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/lib-igloo-manifest.json new file mode 100644 index 0000000..6f4903b --- /dev/null +++ b/target/debug/.fingerprint/igloo-manifest-adeea1a769817567/lib-igloo-manifest.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":9460269125191160019,"profile":18074012566298724745,"path":4812038798862742161,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo-manifest-adeea1a769817567/dep-lib-igloo-manifest"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/bin-igloo_agent new file mode 100644 index 0000000..fab1083 --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/bin-igloo_agent @@ -0,0 +1 @@ +a441150293fe1ea0 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/bin-igloo_agent.json b/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/bin-igloo_agent.json new file mode 100644 index 0000000..70fbcdd --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/bin-igloo_agent.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":3182324659670158807,"profile":18074012566298724745,"path":1815015714726916296,"deps":[[16739089134865246075,"igloo_cli",false,1549838123250796052]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_agent-13fafdf811f4c142/dep-bin-igloo_agent"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/dep-bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/dep-bin-igloo_agent new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/dep-bin-igloo_agent differ diff --git a/target/release/.fingerprint/indexmap-d71227ee9669aacc/invoked.timestamp b/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/indexmap-d71227ee9669aacc/invoked.timestamp rename to target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/output-bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/output-bin-igloo_agent new file mode 100644 index 0000000..800bf55 --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-13fafdf811f4c142/output-bin-igloo_agent @@ -0,0 +1,2 @@ +{"message":"unused variable: `x`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":36,"byte_end":37,"line_start":4,"line_end":4,"column_start":6,"column_end":7,"is_primary":true,"text":[{"text":"\tlet x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;","highlight_start":6,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":36,"byte_end":37,"line_start":4,"line_end":4,"column_start":6,"column_end":7,"is_primary":true,"text":[{"text":"\tlet x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;","highlight_start":6,"highlight_end":7}],"label":null,"suggested_replacement":"_x","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `x`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_agent/src/main.rs:4:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_x`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"} +{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb.lock b/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/bin-igloo_agent similarity index 100% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb.lock rename to target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/bin-igloo_agent diff --git a/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/bin-igloo_agent.json b/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/bin-igloo_agent.json new file mode 100644 index 0000000..df3b6e9 --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/bin-igloo_agent.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":3182324659670158807,"profile":18074012566298724745,"path":1815015714726916296,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/dep-bin-igloo_agent"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/dep-bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/dep-bin-igloo_agent new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/dep-bin-igloo_agent differ diff --git a/target/release/.fingerprint/itoa-449af1c7bd37f226/invoked.timestamp b/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/itoa-449af1c7bd37f226/invoked.timestamp rename to target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/output-bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/output-bin-igloo_agent new file mode 100644 index 0000000..788f016 --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-74ad8daf82f6a0cf/output-bin-igloo_agent @@ -0,0 +1,6 @@ +{"message":"unresolved import `igloo_cli`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":4,"byte_end":13,"line_start":1,"line_end":1,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":"use igloo_cli;","highlight_start":5,"highlight_end":14}],"label":"no `igloo_cli` external crate","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `igloo_cli`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_agent/src/main.rs:1:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_cli;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `igloo_cli` external crate\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooCliCfg`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":50,"byte_end":61,"line_start":4,"line_end":4,"column_start":23,"column_end":34,"is_primary":true,"text":[{"text":"\tlet x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;","highlight_start":23,"highlight_end":34}],"label":"use of undeclared type or module `IglooCliCfg`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooCliCfg`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_agent/src/main.rs:4:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooCliCfg`\u001b[0m\n\n"} +{"message":"cannot find type `IglooCliCfg` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":36,"byte_end":47,"line_start":4,"line_end":4,"column_start":9,"column_end":20,"is_primary":true,"text":[{"text":"\tlet x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;","highlight_start":9,"highlight_end":20}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooCliCfg` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_agent/src/main.rs:4:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"aborting due to 3 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 3 previous errors\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0412, E0432, E0433.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0412, E0432, E0433.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/dep-test-bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/dep-test-bin-igloo_agent new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/dep-test-bin-igloo_agent differ diff --git a/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/invoked.timestamp b/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/invoked.timestamp rename to target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/output-test-bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/output-test-bin-igloo_agent new file mode 100644 index 0000000..788f016 --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/output-test-bin-igloo_agent @@ -0,0 +1,6 @@ +{"message":"unresolved import `igloo_cli`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":4,"byte_end":13,"line_start":1,"line_end":1,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":"use igloo_cli;","highlight_start":5,"highlight_end":14}],"label":"no `igloo_cli` external crate","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `igloo_cli`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_agent/src/main.rs:1:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_cli;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `igloo_cli` external crate\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooCliCfg`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":50,"byte_end":61,"line_start":4,"line_end":4,"column_start":23,"column_end":34,"is_primary":true,"text":[{"text":"\tlet x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;","highlight_start":23,"highlight_end":34}],"label":"use of undeclared type or module `IglooCliCfg`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooCliCfg`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_agent/src/main.rs:4:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooCliCfg`\u001b[0m\n\n"} +{"message":"cannot find type `IglooCliCfg` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":36,"byte_end":47,"line_start":4,"line_end":4,"column_start":9,"column_end":20,"is_primary":true,"text":[{"text":"\tlet x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;","highlight_start":9,"highlight_end":20}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooCliCfg` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_agent/src/main.rs:4:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"aborting due to 3 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 3 previous errors\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0412, E0432, E0433.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0412, E0432, E0433.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/target/release/.cargo-lock b/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/test-bin-igloo_agent similarity index 100% rename from target/release/.cargo-lock rename to target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/test-bin-igloo_agent diff --git a/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/test-bin-igloo_agent.json b/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/test-bin-igloo_agent.json new file mode 100644 index 0000000..b3c8fac --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-85ab39ded87fe90f/test-bin-igloo_agent.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":3182324659670158807,"profile":10655494245791646288,"path":1815015714726916296,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_agent-85ab39ded87fe90f/dep-test-bin-igloo_agent"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/dep-test-bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/dep-test-bin-igloo_agent new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/dep-test-bin-igloo_agent differ diff --git a/target/release/.fingerprint/lexical-core-3f76a674b0092248/invoked.timestamp b/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/lexical-core-3f76a674b0092248/invoked.timestamp rename to target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/output-test-bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/output-test-bin-igloo_agent new file mode 100644 index 0000000..800bf55 --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/output-test-bin-igloo_agent @@ -0,0 +1,2 @@ +{"message":"unused variable: `x`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":36,"byte_end":37,"line_start":4,"line_end":4,"column_start":6,"column_end":7,"is_primary":true,"text":[{"text":"\tlet x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;","highlight_start":6,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_agent/src/main.rs","byte_start":36,"byte_end":37,"line_start":4,"line_end":4,"column_start":6,"column_end":7,"is_primary":true,"text":[{"text":"\tlet x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;","highlight_start":6,"highlight_end":7}],"label":null,"suggested_replacement":"_x","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `x`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_agent/src/main.rs:4:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let x: IglooCliCfg = IglooCliCfg::IglooCliCfgOpt1;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_x`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"} +{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/test-bin-igloo_agent b/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/test-bin-igloo_agent new file mode 100644 index 0000000..c5a528a --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/test-bin-igloo_agent @@ -0,0 +1 @@ +bd0d583228a098da \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/test-bin-igloo_agent.json b/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/test-bin-igloo_agent.json new file mode 100644 index 0000000..3e02011 --- /dev/null +++ b/target/debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/test-bin-igloo_agent.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":3182324659670158807,"profile":10655494245791646288,"path":1815015714726916296,"deps":[[16739089134865246075,"igloo_cli",false,1549838123250796052]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_agent-9326ff99a6a12f9b/dep-test-bin-igloo_agent"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/dep-lib-igloo_base b/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/dep-lib-igloo_base new file mode 100644 index 0000000..9d43e9d Binary files /dev/null and b/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/dep-lib-igloo_base differ diff --git a/target/release/.fingerprint/lexical-core-6da36bab7df24c03/invoked.timestamp b/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/lexical-core-6da36bab7df24c03/invoked.timestamp rename to target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/lib-igloo_base b/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/lib-igloo_base new file mode 100644 index 0000000..a341845 --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/lib-igloo_base @@ -0,0 +1 @@ +94cdc00de2c6d8b7 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/lib-igloo_base.json b/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/lib-igloo_base.json new file mode 100644 index 0000000..b521c2b --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/lib-igloo_base.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":8962105131619297164,"profile":18074012566298724745,"path":4383703642874703997,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/dep-lib-igloo_base"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/output-lib-igloo_base b/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/output-lib-igloo_base new file mode 100644 index 0000000..4e26c15 --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-25c3b6ee9fcb590f/output-lib-igloo_base @@ -0,0 +1,4 @@ +{"message":"unused import: `env_info::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_base/src/lib.rs","byte_start":19,"byte_end":30,"line_start":3,"line_end":3,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":"use env_info::*;","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"igloo_base/src/lib.rs","byte_start":15,"byte_end":31,"line_start":3,"line_end":3,"column_start":1,"column_end":17,"is_primary":true,"text":[{"text":"use env_info::*;","highlight_start":1,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `env_info::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_base/src/lib.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse env_info::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} +{"message":"use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.","code":{"code":"deprecated","explanation":null},"level":"warning","spans":[{"file_name":"igloo_base/src/env_info.rs","byte_start":423,"byte_end":441,"line_start":24,"line_end":24,"column_start":8,"column_end":26,"is_primary":true,"text":[{"text":"\t\t\thd: std::env::home_dir().unwrap(),","highlight_start":8,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(deprecated)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_base/src/env_info.rs:24:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m24\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m hd: std::env::home_dir().unwrap(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(deprecated)]` on by default\u001b[0m\n\n"} +{"message":"associated function is never used: `get_env_info`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_base/src/env_info.rs","byte_start":321,"byte_end":333,"line_start":19,"line_end":19,"column_start":9,"column_end":21,"is_primary":true,"text":[{"text":"\tpub fn get_env_info() -> IglooEnvInfo","highlight_start":9,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `get_env_info`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_base/src/env_info.rs:19:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn get_env_info() -> IglooEnvInfo\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"} +{"message":"3 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 3 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/dep-test-lib-igloo_base b/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/dep-test-lib-igloo_base new file mode 100644 index 0000000..9d43e9d Binary files /dev/null and b/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/dep-test-lib-igloo_base differ diff --git a/target/release/.fingerprint/libc-7cc2f7bb1680d496/invoked.timestamp b/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/libc-7cc2f7bb1680d496/invoked.timestamp rename to target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/output-test-lib-igloo_base b/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/output-test-lib-igloo_base new file mode 100644 index 0000000..7c27274 --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/output-test-lib-igloo_base @@ -0,0 +1,4 @@ +{"message":"use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.","code":{"code":"deprecated","explanation":null},"level":"warning","spans":[{"file_name":"igloo_base/src/lib.rs","byte_start":1668,"byte_end":1681,"line_start":80,"line_end":80,"column_start":8,"column_end":21,"is_primary":true,"text":[{"text":"\t\t\thd: env::home_dir().unwrap(),","highlight_start":8,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(deprecated)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_base/src/lib.rs:80:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m80\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m hd: env::home_dir().unwrap(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(deprecated)]` on by default\u001b[0m\n\n"} +{"message":"use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.","code":{"code":"deprecated","explanation":null},"level":"warning","spans":[{"file_name":"igloo_base/src/env_info.rs","byte_start":423,"byte_end":441,"line_start":24,"line_end":24,"column_start":8,"column_end":26,"is_primary":true,"text":[{"text":"\t\t\thd: std::env::home_dir().unwrap(),","highlight_start":8,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_base/src/env_info.rs:24:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m24\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m hd: std::env::home_dir().unwrap(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `get_env_info`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_base/src/env_info.rs","byte_start":321,"byte_end":333,"line_start":19,"line_end":19,"column_start":9,"column_end":21,"is_primary":true,"text":[{"text":"\tpub fn get_env_info() -> IglooEnvInfo","highlight_start":9,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `get_env_info`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_base/src/env_info.rs:19:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn get_env_info() -> IglooEnvInfo\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"} +{"message":"3 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 3 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/test-lib-igloo_base b/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/test-lib-igloo_base new file mode 100644 index 0000000..60b80b1 --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/test-lib-igloo_base @@ -0,0 +1 @@ +0249413c6870cf4d \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/test-lib-igloo_base.json b/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/test-lib-igloo_base.json new file mode 100644 index 0000000..137c594 --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-aaf8b629d35fee84/test-lib-igloo_base.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":8962105131619297164,"profile":10655494245791646288,"path":4383703642874703997,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_base-aaf8b629d35fee84/dep-test-lib-igloo_base"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/dep-test-lib-igloo_base b/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/dep-test-lib-igloo_base new file mode 100644 index 0000000..9d43e9d Binary files /dev/null and b/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/dep-test-lib-igloo_base differ diff --git a/target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/invoked.timestamp b/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/invoked.timestamp rename to target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/test-lib-igloo_base b/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/test-lib-igloo_base new file mode 100644 index 0000000..e0b666b --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/test-lib-igloo_base @@ -0,0 +1 @@ +02fd5c3ef64bcbaf \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/test-lib-igloo_base.json b/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/test-lib-igloo_base.json new file mode 100644 index 0000000..56b716b --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/test-lib-igloo_base.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":8962105131619297164,"profile":10655494245791646288,"path":4383703642874703997,"deps":[[4921804582552705761,"directories",false,5543740817720121594]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_base-caeed73d1e0aeb1e/dep-test-lib-igloo_base"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_base-d7210f9309a81679/dep-lib-igloo_base b/target/debug/.fingerprint/igloo_base-d7210f9309a81679/dep-lib-igloo_base new file mode 100644 index 0000000..9d43e9d Binary files /dev/null and b/target/debug/.fingerprint/igloo_base-d7210f9309a81679/dep-lib-igloo_base differ diff --git a/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/invoked.timestamp b/target/debug/.fingerprint/igloo_base-d7210f9309a81679/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/linked-hash-map-0a449f63e0711052/invoked.timestamp rename to target/debug/.fingerprint/igloo_base-d7210f9309a81679/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_base-d7210f9309a81679/lib-igloo_base b/target/debug/.fingerprint/igloo_base-d7210f9309a81679/lib-igloo_base new file mode 100644 index 0000000..f86a76d --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-d7210f9309a81679/lib-igloo_base @@ -0,0 +1 @@ +cfc90218fc355523 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_base-d7210f9309a81679/lib-igloo_base.json b/target/debug/.fingerprint/igloo_base-d7210f9309a81679/lib-igloo_base.json new file mode 100644 index 0000000..d410872 --- /dev/null +++ b/target/debug/.fingerprint/igloo_base-d7210f9309a81679/lib-igloo_base.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":8962105131619297164,"profile":18074012566298724745,"path":4383703642874703997,"deps":[[4921804582552705761,"directories",false,5543740817720121594]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_base-d7210f9309a81679/dep-lib-igloo_base"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/dep-test-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/dep-test-lib-igloo_cli new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/dep-test-lib-igloo_cli differ diff --git a/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/invoked.timestamp b/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/invoked.timestamp rename to target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/output-test-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/output-test-lib-igloo_cli new file mode 100644 index 0000000..a65fe23 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/output-test-lib-igloo_cli @@ -0,0 +1,4 @@ +{"message":"an inner attribute is not permitted in this context","code":null,"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":97,"byte_end":116,"line_start":10,"line_end":10,"column_start":1,"column_end":20,"is_primary":true,"text":[{"text":"#![allow(warnings)]","highlight_start":1,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"inner attributes, like `#![no_std]`, annotate the item enclosing them, and are usually found at the beginning of source files. Outer attributes, like `#[test]`, annotate the item following them.","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: an inner attribute is not permitted in this context\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:10:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m#![allow(warnings)]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: inner attributes, like `#![no_std]`, annotate the item enclosing them, and are usually found at the beginning of source files. Outer attributes, like `#[test]`, annotate the item following them.\u001b[0m\n\n"} +{"message":"can't find crate for `clap`","code":{"code":"E0463","explanation":"A plugin/crate was declared but cannot be found.\n\nErroneous code example:\n\n```compile_fail,E0463\n#![feature(plugin)]\n#![plugin(cookie_monster)] // error: can't find crate for `cookie_monster`\nextern crate cake_is_a_lie; // error: can't find crate for `cake_is_a_lie`\n```\n\nYou need to link your code to the relevant crate in order to be able to use it\n(through Cargo or the `-L` option of rustc example). Plugins are crates as\nwell, and you link to them the same way.\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":117,"byte_end":135,"line_start":11,"line_end":11,"column_start":1,"column_end":19,"is_primary":true,"text":[{"text":"extern crate clap;","highlight_start":1,"highlight_end":19}],"label":"can't find crate","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0463]\u001b[0m\u001b[0m\u001b[1m: can't find crate for `clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:11:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m11\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mextern crate clap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcan't find crate\u001b[0m\n\n"} +{"message":"aborting due to 2 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 2 previous errors\u001b[0m\n\n"} +{"message":"For more information about this error, try `rustc --explain E0463`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0463`.\u001b[0m\n"} diff --git a/target/release/build/bitflags-3d65992b427b8247/stderr b/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/test-lib-igloo_cli similarity index 100% rename from target/release/build/bitflags-3d65992b427b8247/stderr rename to target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/test-lib-igloo_cli diff --git a/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/test-lib-igloo_cli.json b/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/test-lib-igloo_cli.json new file mode 100644 index 0000000..47df60f --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/test-lib-igloo_cli.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7357334613546258369,"profile":10655494245791646288,"path":10195283160664914585,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_cli-0d12a2aa1929e66e/dep-test-lib-igloo_cli"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/dep-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/dep-lib-igloo_cli new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/dep-lib-igloo_cli differ diff --git a/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/invoked.timestamp b/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/memchr-3df2d04dc68b3e7b/invoked.timestamp rename to target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/lib-igloo_cli new file mode 100644 index 0000000..203ba8c --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/lib-igloo_cli @@ -0,0 +1 @@ +ef7dffbe194587ce \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/lib-igloo_cli.json b/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/lib-igloo_cli.json new file mode 100644 index 0000000..3be10d9 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/lib-igloo_cli.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7357334613546258369,"profile":18074012566298724745,"path":10195283160664914585,"deps":[[1122423871155493656,"config",false,5716277277819123494],[12003688265259193345,"clap",false,10361242190334441186]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_cli-0d441a52fb704bbe/dep-lib-igloo_cli"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/output-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/output-lib-igloo_cli new file mode 100644 index 0000000..dbe7865 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-0d441a52fb704bbe/output-lib-igloo_cli @@ -0,0 +1,3 @@ +{"message":"unused imports: `AppSettings`, `ArgSettings`, `Clap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":52,"byte_end":56,"line_start":4,"line_end":4,"column_start":12,"column_end":16,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":12,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":63,"byte_end":74,"line_start":4,"line_end":4,"column_start":23,"column_end":34,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":23,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":81,"byte_end":92,"line_start":4,"line_end":4,"column_start":41,"column_end":52,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":41,"highlight_end":52}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":52,"byte_end":58,"line_start":4,"line_end":4,"column_start":12,"column_end":18,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":12,"highlight_end":18}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":61,"byte_end":74,"line_start":4,"line_end":4,"column_start":21,"column_end":34,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":21,"highlight_end":34}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":79,"byte_end":92,"line_start":4,"line_end":4,"column_start":39,"column_end":52,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":39,"highlight_end":52}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused imports: `AppSettings`, `ArgSettings`, `Clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:4:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} +{"message":"unused import: `config::Config`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":111,"byte_end":125,"line_start":5,"line_end":5,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":"use config::Config;","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":107,"byte_end":126,"line_start":5,"line_end":5,"column_start":1,"column_end":20,"is_primary":true,"text":[{"text":"use config::Config;","highlight_start":1,"highlight_end":20}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `config::Config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:5:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse config::Config;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 2 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/igloo_cli-11e55e777474678b/dep-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-11e55e777474678b/dep-lib-igloo_cli new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_cli-11e55e777474678b/dep-lib-igloo_cli differ diff --git a/target/release/.fingerprint/memchr-c44b65623915fcea/invoked.timestamp b/target/debug/.fingerprint/igloo_cli-11e55e777474678b/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/memchr-c44b65623915fcea/invoked.timestamp rename to target/debug/.fingerprint/igloo_cli-11e55e777474678b/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_cli-11e55e777474678b/lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-11e55e777474678b/lib-igloo_cli new file mode 100644 index 0000000..1183bdd --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-11e55e777474678b/lib-igloo_cli @@ -0,0 +1 @@ +102805ecab656e9a \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-11e55e777474678b/lib-igloo_cli.json b/target/debug/.fingerprint/igloo_cli-11e55e777474678b/lib-igloo_cli.json new file mode 100644 index 0000000..e9e4572 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-11e55e777474678b/lib-igloo_cli.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7357334613546258369,"profile":18074012566298724745,"path":10195283160664914585,"deps":[[120200842360645998,"igloo_base",false,2546000521198750159],[1122423871155493656,"config",false,5716277277819123494],[12003688265259193345,"clap",false,17337329443654176458]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_cli-11e55e777474678b/dep-lib-igloo_cli"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/dep-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/dep-lib-igloo_cli new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/dep-lib-igloo_cli differ diff --git a/target/release/.fingerprint/nom-6a4948a25f93776d/invoked.timestamp b/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/nom-6a4948a25f93776d/invoked.timestamp rename to target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/invoked.timestamp diff --git a/target/release/build/indexmap-62d8e03465cfcdd6/stderr b/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/lib-igloo_cli similarity index 100% rename from target/release/build/indexmap-62d8e03465cfcdd6/stderr rename to target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/lib-igloo_cli diff --git a/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/lib-igloo_cli.json b/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/lib-igloo_cli.json new file mode 100644 index 0000000..ac72f14 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/lib-igloo_cli.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7357334613546258369,"profile":18074012566298724745,"path":10195283160664914585,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_cli-1b8328b5a881ab78/dep-lib-igloo_cli"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/output-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/output-lib-igloo_cli new file mode 100644 index 0000000..781a946 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-1b8328b5a881ab78/output-lib-igloo_cli @@ -0,0 +1,16 @@ +{"message":"failed to resolve: use of undeclared type or module `clap`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":215,"byte_end":219,"line_start":16,"line_end":16,"column_start":12,"column_end":16,"is_primary":true,"text":[{"text":"\t\t.version(clap::crate_version!())","highlight_start":12,"highlight_end":16}],"label":"use of undeclared type or module `clap`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:16:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .version(clap::crate_version!())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `clap`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `clap`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":176,"byte_end":180,"line_start":15,"line_end":15,"column_start":10,"column_end":14,"is_primary":true,"text":[{"text":"\t\t.about(clap::crate_description!())","highlight_start":10,"highlight_end":14}],"label":"use of undeclared type or module `clap`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:15:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m15\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .about(clap::crate_description!())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `clap`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `App`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":149,"byte_end":152,"line_start":14,"line_end":14,"column_start":16,"column_end":19,"is_primary":true,"text":[{"text":"\tlet ret_app = App::new(\"igloo\")","highlight_start":16,"highlight_end":19}],"label":"use of undeclared type or module `App`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `App`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:14:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let ret_app = App::new(\"igloo\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `App`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `clap`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":250,"byte_end":254,"line_start":17,"line_end":17,"column_start":12,"column_end":16,"is_primary":true,"text":[{"text":"\t\t.setting(clap::AppSettings::SubcommandRequiredElseHelp)","highlight_start":12,"highlight_end":16}],"label":"use of undeclared type or module `clap`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:17:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .setting(clap::AppSettings::SubcommandRequiredElseHelp)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `clap`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `App`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":311,"byte_end":314,"line_start":18,"line_end":18,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":"\t\t.subcommand(App::new(\"new\")","highlight_start":15,"highlight_end":18}],"label":"use of undeclared type or module `App`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `App`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:18:15\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .subcommand(App::new(\"new\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `App`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `Arg`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":380,"byte_end":383,"line_start":20,"line_end":20,"column_start":11,"column_end":14,"is_primary":true,"text":[{"text":"\t\t\t\t\t.arg(Arg::new(\"project_name\")","highlight_start":11,"highlight_end":14}],"label":"use of undeclared type or module `Arg`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `Arg`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:20:11\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .arg(Arg::new(\"project_name\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `Arg`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `Arg`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":494,"byte_end":497,"line_start":23,"line_end":23,"column_start":11,"column_end":14,"is_primary":true,"text":[{"text":"\t\t\t\t\t.arg(Arg::new(\"target\")","highlight_start":11,"highlight_end":14}],"label":"use of undeclared type or module `Arg`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `Arg`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:23:11\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m23\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .arg(Arg::new(\"target\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `Arg`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `App`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":644,"byte_end":647,"line_start":29,"line_end":29,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":"\t\t.subcommand(App::new(\"run\")","highlight_start":15,"highlight_end":18}],"label":"use of undeclared type or module `App`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `App`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:29:15\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m29\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .subcommand(App::new(\"run\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `App`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `Arg`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":770,"byte_end":773,"line_start":32,"line_end":32,"column_start":11,"column_end":14,"is_primary":true,"text":[{"text":"\t\t\t\t\t.arg(Arg::new(\"build_type\")","highlight_start":11,"highlight_end":14}],"label":"use of undeclared type or module `Arg`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `Arg`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:32:11\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m32\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .arg(Arg::new(\"build_type\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `Arg`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `App`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":909,"byte_end":912,"line_start":36,"line_end":36,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":"\t\t.subcommand(App::new(\"flash\")","highlight_start":15,"highlight_end":18}],"label":"use of undeclared type or module `App`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `App`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:36:15\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m36\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .subcommand(App::new(\"flash\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `App`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `Arg`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":988,"byte_end":991,"line_start":38,"line_end":38,"column_start":11,"column_end":14,"is_primary":true,"text":[{"text":"\t\t\t\t\t.arg(Arg::new(\"build_type\")","highlight_start":11,"highlight_end":14}],"label":"use of undeclared type or module `Arg`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `Arg`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:38:11\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m38\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .arg(Arg::new(\"build_type\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `Arg`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `App`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":1127,"byte_end":1130,"line_start":42,"line_end":42,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":"\t\t.subcommand(App::new(\"erase\")","highlight_start":15,"highlight_end":18}],"label":"use of undeclared type or module `App`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `App`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:42:15\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m42\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m .subcommand(App::new(\"erase\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `App`\u001b[0m\n\n"} +{"message":"cannot find type `ArgMatches` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":121,"byte_end":131,"line_start":12,"line_end":12,"column_start":23,"column_end":33,"is_primary":true,"text":[{"text":"pub fn igloo_app() -> ArgMatches","highlight_start":23,"highlight_end":33}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `ArgMatches` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:12:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m12\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn igloo_app() -> ArgMatches\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"aborting due to 13 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 13 previous errors\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0412, E0433.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0412, E0433.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/dep-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/dep-lib-igloo_cli new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/dep-lib-igloo_cli differ diff --git a/target/release/.fingerprint/nom-cc13468d7cb1a4db/invoked.timestamp b/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/nom-cc13468d7cb1a4db/invoked.timestamp rename to target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/lib-igloo_cli new file mode 100644 index 0000000..53acc61 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/lib-igloo_cli @@ -0,0 +1 @@ +268447dc0654d999 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/lib-igloo_cli.json b/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/lib-igloo_cli.json new file mode 100644 index 0000000..b350ffd --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/lib-igloo_cli.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7357334613546258369,"profile":18074012566298724745,"path":10195283160664914585,"deps":[[1122423871155493656,"config",false,5716277277819123494],[12003688265259193345,"clap",false,17337329443654176458]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_cli-4de5ad14e47bd878/dep-lib-igloo_cli"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/output-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/output-lib-igloo_cli new file mode 100644 index 0000000..dbe7865 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-4de5ad14e47bd878/output-lib-igloo_cli @@ -0,0 +1,3 @@ +{"message":"unused imports: `AppSettings`, `ArgSettings`, `Clap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":52,"byte_end":56,"line_start":4,"line_end":4,"column_start":12,"column_end":16,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":12,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":63,"byte_end":74,"line_start":4,"line_end":4,"column_start":23,"column_end":34,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":23,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":81,"byte_end":92,"line_start":4,"line_end":4,"column_start":41,"column_end":52,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":41,"highlight_end":52}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":52,"byte_end":58,"line_start":4,"line_end":4,"column_start":12,"column_end":18,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":12,"highlight_end":18}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":61,"byte_end":74,"line_start":4,"line_end":4,"column_start":21,"column_end":34,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":21,"highlight_end":34}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":79,"byte_end":92,"line_start":4,"line_end":4,"column_start":39,"column_end":52,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":39,"highlight_end":52}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused imports: `AppSettings`, `ArgSettings`, `Clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:4:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} +{"message":"unused import: `config::Config`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":111,"byte_end":125,"line_start":5,"line_end":5,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":"use config::Config;","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":107,"byte_end":126,"line_start":5,"line_end":5,"column_start":1,"column_end":20,"is_primary":true,"text":[{"text":"use config::Config;","highlight_start":1,"highlight_end":20}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `config::Config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:5:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse config::Config;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 2 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/igloo_cli-9b992448710f0685/dep-test-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-9b992448710f0685/dep-test-lib-igloo_cli new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_cli-9b992448710f0685/dep-test-lib-igloo_cli differ diff --git a/target/release/.fingerprint/num-traits-43b7376d32138d38/invoked.timestamp b/target/debug/.fingerprint/igloo_cli-9b992448710f0685/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/num-traits-43b7376d32138d38/invoked.timestamp rename to target/debug/.fingerprint/igloo_cli-9b992448710f0685/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_cli-9b992448710f0685/test-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-9b992448710f0685/test-lib-igloo_cli new file mode 100644 index 0000000..ff3effd --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-9b992448710f0685/test-lib-igloo_cli @@ -0,0 +1 @@ +20c6c1d20129c192 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-9b992448710f0685/test-lib-igloo_cli.json b/target/debug/.fingerprint/igloo_cli-9b992448710f0685/test-lib-igloo_cli.json new file mode 100644 index 0000000..efb8af9 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-9b992448710f0685/test-lib-igloo_cli.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7357334613546258369,"profile":10655494245791646288,"path":10195283160664914585,"deps":[[120200842360645998,"igloo_base",false,2546000521198750159],[1122423871155493656,"config",false,5716277277819123494],[12003688265259193345,"clap",false,17337329443654176458]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_cli-9b992448710f0685/dep-test-lib-igloo_cli"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/dep-test-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/dep-test-lib-igloo_cli new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/dep-test-lib-igloo_cli differ diff --git a/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/invoked.timestamp b/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/invoked.timestamp rename to target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/output-test-lib-igloo_cli b/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/output-test-lib-igloo_cli new file mode 100644 index 0000000..84a1962 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/output-test-lib-igloo_cli @@ -0,0 +1,8 @@ +{"message":"unresolved import `igloo_base`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":45,"byte_end":55,"line_start":4,"line_end":4,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":"use igloo_base::*;","highlight_start":5,"highlight_end":15}],"label":"use of undeclared type or module `igloo_base`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `igloo_base`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:4:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `igloo_base`\u001b[0m\n\n"} +{"message":"cannot find type `IglooInstType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":1486,"byte_end":1499,"line_start":55,"line_end":55,"column_start":46,"column_end":59,"is_primary":true,"text":[{"text":"pub fn igloo_subcommand(app: &App) -> Result","highlight_start":46,"highlight_end":59}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"you might be missing a type parameter","code":null,"level":"help","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":1464,"byte_end":1464,"line_start":55,"line_end":55,"column_start":24,"column_end":24,"is_primary":true,"text":[{"text":"pub fn igloo_subcommand(app: &App) -> Result","highlight_start":24,"highlight_end":24}],"label":null,"suggested_replacement":"","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooInstType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:55:46\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m55\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn igloo_subcommand(app: &App) -> Result\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: you might be missing a type parameter: ``\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":1501,"byte_end":1513,"line_start":55,"line_end":55,"column_start":61,"column_end":73,"is_primary":true,"text":[{"text":"pub fn igloo_subcommand(app: &App) -> Result","highlight_start":61,"highlight_end":73}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"you might be missing a type parameter","code":null,"level":"help","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":1464,"byte_end":1464,"line_start":55,"line_end":55,"column_start":24,"column_end":24,"is_primary":true,"text":[{"text":"pub fn igloo_subcommand(app: &App) -> Result","highlight_start":24,"highlight_end":24}],"label":null,"suggested_replacement":"","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:55:61\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m55\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn igloo_subcommand(app: &App) -> Result\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: you might be missing a type parameter: ``\u001b[0m\n\n"} +{"message":"unused imports: `AppSettings`, `ArgSettings`, `Clap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":71,"byte_end":75,"line_start":5,"line_end":5,"column_start":12,"column_end":16,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":12,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":82,"byte_end":93,"line_start":5,"line_end":5,"column_start":23,"column_end":34,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":23,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":100,"byte_end":111,"line_start":5,"line_end":5,"column_start":41,"column_end":52,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":41,"highlight_end":52}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":71,"byte_end":77,"line_start":5,"line_end":5,"column_start":12,"column_end":18,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":12,"highlight_end":18}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":80,"byte_end":93,"line_start":5,"line_end":5,"column_start":21,"column_end":34,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":21,"highlight_end":34}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"igloo_cli/src/lib.rs","byte_start":98,"byte_end":111,"line_start":5,"line_end":5,"column_start":39,"column_end":52,"is_primary":true,"text":[{"text":"use clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};","highlight_start":39,"highlight_end":52}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused imports: `AppSettings`, `ArgSettings`, `Clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:5:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse clap::{Clap, App, AppSettings, Arg, ArgSettings, ArgMatches};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} +{"message":"unused import: `config::Config`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":130,"byte_end":144,"line_start":6,"line_end":6,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":"use config::Config;","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"igloo_cli/src/lib.rs","byte_start":126,"byte_end":145,"line_start":6,"line_end":6,"column_start":1,"column_end":20,"is_primary":true,"text":[{"text":"use config::Config;","highlight_start":1,"highlight_end":20}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `config::Config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_cli/src/lib.rs:6:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m6\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse config::Config;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"aborting due to 3 previous errors; 2 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 3 previous errors; 2 warnings emitted\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0412, E0432.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0412, E0432.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/target/release/build/lexical-core-ee4e63713e85d41d/stderr b/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/test-lib-igloo_cli similarity index 100% rename from target/release/build/lexical-core-ee4e63713e85d41d/stderr rename to target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/test-lib-igloo_cli diff --git a/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/test-lib-igloo_cli.json b/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/test-lib-igloo_cli.json new file mode 100644 index 0000000..d8b2e75 --- /dev/null +++ b/target/debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/test-lib-igloo_cli.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7357334613546258369,"profile":10655494245791646288,"path":10195283160664914585,"deps":[[1122423871155493656,"config",false,5716277277819123494],[12003688265259193345,"clap",false,10361242190334441186]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_cli-cf1e600c6bef04e4/dep-test-lib-igloo_cli"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-9e08d90901b368a8/invoked.timestamp b/target/debug/.fingerprint/igloo_core-02240a23c67e1f6b/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/num-traits-9e08d90901b368a8/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-02240a23c67e1f6b/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-02240a23c67e1f6b/output-lib-igloo_core b/target/debug/.fingerprint/igloo_core-02240a23c67e1f6b/output-lib-igloo_core new file mode 100644 index 0000000..c637b74 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-02240a23c67e1f6b/output-lib-igloo_core @@ -0,0 +1,94 @@ +{"message":"expected one of `=>`, `if`, or `|`, found `(`","code":null,"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1677,"byte_end":1678,"line_start":61,"line_end":61,"column_start":5,"column_end":6,"is_primary":true,"text":[{"text":"\t\t\t_(e) =>","highlight_start":5,"highlight_end":6}],"label":"expected one of `=>`, `if`, or `|`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: expected one of `=>`, `if`, or `|`, found `(`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:61:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m61\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m _(e) =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected one of `=>`, `if`, or `|`\u001b[0m\n\n"} +{"message":"expected one of `=>`, `if`, or `|`, found `(`","code":null,"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1826,"byte_end":1827,"line_start":70,"line_end":70,"column_start":5,"column_end":6,"is_primary":true,"text":[{"text":"\t\t\t_(e) =>","highlight_start":5,"highlight_end":6}],"label":"expected one of `=>`, `if`, or `|`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: expected one of `=>`, `if`, or `|`, found `(`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:70:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m70\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m _(e) =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected one of `=>`, `if`, or `|`\u001b[0m\n\n"} +{"message":"unresolved import `crate::igloo_manifest`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":34,"byte_end":48,"line_start":3,"line_end":3,"column_start":13,"column_end":27,"is_primary":true,"text":[{"text":"\tuse crate::igloo_manifest::IglooManifest;","highlight_start":13,"highlight_end":27}],"label":"maybe a missing crate `igloo_manifest`?","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::igloo_manifest`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:3:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m use crate::igloo_manifest::IglooManifest;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmaybe a missing crate `igloo_manifest`?\u001b[0m\n\n"} +{"message":"unresolved import `crate::igloo`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":77,"byte_end":82,"line_start":4,"line_end":4,"column_start":13,"column_end":18,"is_primary":true,"text":[{"text":"\tuse crate::igloo::{Igloo, IglooErrType, IglooEnvInfo};","highlight_start":13,"highlight_end":18}],"label":"maybe a missing crate `igloo`?","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::igloo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:4:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m use crate::igloo::{Igloo, IglooErrType, IglooEnvInfo};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmaybe a missing crate `igloo`?\u001b[0m\n\n"} +{"message":"unresolved import `crate::igloo_prj`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":133,"byte_end":142,"line_start":5,"line_end":5,"column_start":13,"column_end":22,"is_primary":true,"text":[{"text":"\tuse crate::igloo_prj::IglooPrj;","highlight_start":13,"highlight_end":22}],"label":"maybe a missing crate `igloo_prj`?","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::igloo_prj`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:5:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m use crate::igloo_prj::IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmaybe a missing crate `igloo_prj`?\u001b[0m\n\n"} +{"message":"unresolved import `crate::igloo_base`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":11,"byte_end":21,"line_start":1,"line_end":1,"column_start":12,"column_end":22,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":12,"highlight_end":22}],"label":"maybe a missing crate `igloo_base`?","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::igloo_base`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:1:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_base::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmaybe a missing crate `igloo_base`?\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":805,"byte_end":817,"line_start":37,"line_end":37,"column_start":21,"column_end":33,"is_primary":true,"text":[{"text":"\t\tlet mut res_err = IglooErrType::IGLOO_ERR_NONE;","highlight_start":21,"highlight_end":33}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:37:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m37\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err = IglooErrType::IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":889,"byte_end":901,"line_start":40,"line_end":40,"column_start":14,"column_end":26,"is_primary":true,"text":[{"text":"\t\t\tres_err = IglooErrType::IGLOO_INVALID_PROJECT_NAME;","highlight_start":14,"highlight_end":26}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:40:14\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m40\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m res_err = IglooErrType::IGLOO_INVALID_PROJECT_NAME;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":975,"byte_end":987,"line_start":44,"line_end":44,"column_start":17,"column_end":29,"is_primary":true,"text":[{"text":"\t\tif res_err != IglooErrType::IGLOO_ERR_NONE","highlight_start":17,"highlight_end":29}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:44:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m44\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err != IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooManifest`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":1043,"byte_end":1056,"line_start":48,"line_end":48,"column_start":9,"column_end":22,"is_primary":true,"text":[{"text":"\t\tmatch IglooManifest::target_exists(inst, targetIn)","highlight_start":9,"highlight_end":22}],"label":"use of undeclared type or module `IglooManifest`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooManifest`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:48:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m48\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m match IglooManifest::target_exists(inst, targetIn)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooManifest`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":1272,"byte_end":1284,"line_start":59,"line_end":59,"column_start":17,"column_end":29,"is_primary":true,"text":[{"text":"\t\t\t\t\treturn Err(IglooErrType::IGLOO_INVALID_TARGET)","highlight_start":17,"highlight_end":29}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:59:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m59\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m return Err(IglooErrType::IGLOO_INVALID_TARGET)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3343,"byte_end":3355,"line_start":155,"line_end":155,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooErrType::IGLOO_ERR_NONE","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:155:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m155\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5431,"byte_end":5443,"line_start":239,"line_end":239,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooErrType::IGLOO_ERR_NONE","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:239:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m239\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5569,"byte_end":5581,"line_start":244,"line_end":244,"column_start":31,"column_end":43,"is_primary":true,"text":[{"text":"\t\tlet mut ret: IglooErrType = IglooErrType::IGLOO_ERR_NONE;","highlight_start":31,"highlight_end":43}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:244:31\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m244\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut ret: IglooErrType = IglooErrType::IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22066,"byte_end":22078,"line_start":1028,"line_end":1028,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooErrType::IGLOO_ERR_NONE","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1028:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1028\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22697,"byte_end":22709,"line_start":1054,"line_end":1054,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":"\t\t\t\t\treturn IglooErrType::IGLOO_ERR_UNKNOWN","highlight_start":13,"highlight_end":25}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1054:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1054\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m return IglooErrType::IGLOO_ERR_UNKNOWN\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23023,"byte_end":23035,"line_start":1068,"line_end":1068,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooErrType::IGLOO_ERR_NONE","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1068:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1068\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23584,"byte_end":23596,"line_start":1089,"line_end":1089,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooErrType::IGLOO_ERR_NONE","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1089:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1089\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooTargetManifest`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23777,"byte_end":23796,"line_start":1101,"line_end":1101,"column_start":21,"column_end":40,"is_primary":true,"text":[{"text":"\t\t\ttarget_manifest: IglooTargetManifest::default(),","highlight_start":21,"highlight_end":40}],"label":"use of undeclared type or module `IglooTargetManifest`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooTargetManifest`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1101:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1101\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_manifest: IglooTargetManifest::default(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooTargetManifest`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":24010,"byte_end":24016,"line_start":1112,"line_end":1112,"column_start":37,"column_end":43,"is_primary":true,"text":[{"text":"\t\tlet mut makefile: HashMap = HashMap::new();","highlight_start":37,"highlight_end":43}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1112:37\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut makefile: HashMap = HashMap::new();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooTargetManifest`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":25019,"byte_end":25038,"line_start":1154,"line_end":1154,"column_start":21,"column_end":40,"is_primary":true,"text":[{"text":"\t\t\ttarget_manifest: IglooTargetManifest::from(target_man_loc),","highlight_start":21,"highlight_end":40}],"label":"use of undeclared type or module `IglooTargetManifest`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooTargetManifest`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1154:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1154\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_manifest: IglooTargetManifest::from(target_man_loc),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooTargetManifest`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":25376,"byte_end":25382,"line_start":1175,"line_end":1175,"column_start":24,"column_end":30,"is_primary":true,"text":[{"text":"\t\tlet mut target_man = config::Config::new();","highlight_start":24,"highlight_end":30}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1175:24\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1175\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut target_man = config::Config::new();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":90,"byte_end":96,"line_start":5,"line_end":5,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":"\tlinks: HashMap,","highlight_start":25,"highlight_end":31}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:5:25\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m links: HashMap,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":121,"byte_end":127,"line_start":6,"line_end":6,"column_start":16,"column_end":22,"is_primary":true,"text":[{"text":"\tincludes: Vec,","highlight_start":16,"highlight_end":22}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:6:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m6\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m includes: Vec,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":163,"byte_end":169,"line_start":7,"line_end":7,"column_start":27,"column_end":33,"is_primary":true,"text":[{"text":"\topenocd: HashMap,","highlight_start":27,"highlight_end":33}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:7:27\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m openocd: HashMap,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":211,"byte_end":217,"line_start":8,"line_end":8,"column_start":33,"column_end":39,"is_primary":true,"text":[{"text":"\tmake_manifest: HashMap,","highlight_start":33,"highlight_end":39}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:8:33\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m make_manifest: HashMap,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":382,"byte_end":394,"line_start":18,"line_end":18,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooErrType::ErrNone","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:18:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooErrType::ErrNone\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":502,"byte_end":514,"line_start":24,"line_end":24,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooErrType::ErrNone","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:24:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m24\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooErrType::ErrNone\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooErrType`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":686,"byte_end":698,"line_start":31,"line_end":31,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooErrType::ErrNone","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooErrType`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:31:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m31\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooErrType::ErrNone\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooErrType`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `clap`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":441,"byte_end":445,"line_start":23,"line_end":23,"column_start":12,"column_end":16,"is_primary":true,"text":[{"text":"\tcli_conf: clap::ArgMatches,","highlight_start":12,"highlight_end":16}],"label":"use of undeclared type or module `clap`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:23:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m23\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m cli_conf: clap::ArgMatches,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `clap`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":502,"byte_end":508,"line_start":25,"line_end":25,"column_start":19,"column_end":25,"is_primary":true,"text":[{"text":"\tmaster_make_man: config::Config,","highlight_start":19,"highlight_end":25}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:25:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m25\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m master_make_man: config::Config,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":538,"byte_end":544,"line_start":26,"line_end":26,"column_start":21,"column_end":27,"is_primary":true,"text":[{"text":"\tmaster_target_man: config::Config,","highlight_start":21,"highlight_end":27}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:26:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m26\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m master_target_man: config::Config,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1034,"byte_end":1040,"line_start":42,"line_end":42,"column_start":19,"column_end":25,"is_primary":true,"text":[{"text":"\t\t\tmake_manifest: config::Config::new(),","highlight_start":19,"highlight_end":25}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:42:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m42\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m make_manifest: config::Config::new(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1077,"byte_end":1083,"line_start":43,"line_end":43,"column_start":21,"column_end":27,"is_primary":true,"text":[{"text":"\t\t\ttarget_manifest: config::Config::new(),","highlight_start":21,"highlight_end":27}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:43:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_manifest: config::Config::new(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooAction`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2799,"byte_end":2810,"line_start":117,"line_end":117,"column_start":19,"column_end":30,"is_primary":true,"text":[{"text":"\t\t\t\tlet res_err = IglooAction::new(","highlight_start":19,"highlight_end":30}],"label":"use of undeclared type or module `IglooAction`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooAction`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:117:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m117\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let res_err = IglooAction::new(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooAction`\u001b[0m\n\n"} +{"message":"cannot find type `IglooTarget` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":456,"byte_end":467,"line_start":17,"line_end":17,"column_start":19,"column_end":30,"is_primary":true,"text":[{"text":"\ttarget_bank: Vec,","highlight_start":19,"highlight_end":30}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTarget` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:17:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_bank: Vec,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `Igloo` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":705,"byte_end":710,"line_start":34,"line_end":34,"column_start":20,"column_end":25,"is_primary":true,"text":[{"text":"\tpub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)","highlight_start":20,"highlight_end":25}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::Igloo;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `Igloo` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:34:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m34\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::Igloo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":768,"byte_end":780,"line_start":35,"line_end":35,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":"\t\t\t -> Result","highlight_start":27,"highlight_end":39}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:35:27\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m35\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m -> Result\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooTarget` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":1631,"byte_end":1642,"line_start":73,"line_end":73,"column_start":21,"column_end":32,"is_primary":true,"text":[{"text":"\t\tlet mut temp: Vec = Vec::new();","highlight_start":21,"highlight_end":32}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTarget` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:73:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m73\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut temp: Vec = Vec::new();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooTarget`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":1671,"byte_end":1682,"line_start":74,"line_end":74,"column_start":14,"column_end":25,"is_primary":true,"text":[{"text":"\t\tlet targ = IglooTarget::from(","highlight_start":14,"highlight_end":25}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooTarget`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:74:14\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m74\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let targ = IglooTarget::from(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooEnvInfo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":1904,"byte_end":1916,"line_start":85,"line_end":85,"column_start":17,"column_end":29,"is_primary":true,"text":[{"text":"\t\t\tproject_dir: IglooEnvInfo::info().cwd.join(nameIn),","highlight_start":17,"highlight_end":29}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooEnvInfo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:85:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m85\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m project_dir: IglooEnvInfo::info().cwd.join(nameIn),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":1979,"byte_end":1991,"line_start":89,"line_end":89,"column_start":28,"column_end":40,"is_primary":true,"text":[{"text":"\tpub fn populate(&self) -> IglooErrType","highlight_start":28,"highlight_end":40}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:89:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m89\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn populate(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooEnvInfo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":2045,"byte_end":2057,"line_start":93,"line_end":93,"column_start":24,"column_end":36,"is_primary":true,"text":[{"text":"\t\tlet mut active_dir = IglooEnvInfo::info().cwd;","highlight_start":24,"highlight_end":36}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooEnvInfo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:93:24\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m93\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut active_dir = IglooEnvInfo::info().cwd;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3793,"byte_end":3805,"line_start":176,"line_end":176,"column_start":31,"column_end":43,"is_primary":true,"text":[{"text":"\tpub fn gen_targets(&self) -> IglooErrType","highlight_start":31,"highlight_end":43}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:176:31\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m176\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn gen_targets(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooEnvInfo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4444,"byte_end":4456,"line_start":201,"line_end":201,"column_start":6,"column_end":18,"is_primary":true,"text":[{"text":"\t\t\t\t\tIglooEnvInfo::info()","highlight_start":6,"highlight_end":18}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooEnvInfo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:201:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m201\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooEnvInfo::info()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooEnvInfo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5185,"byte_end":5197,"line_start":230,"line_end":230,"column_start":23,"column_end":35,"is_primary":true,"text":[{"text":"\t\t\t\tlet link_to_dir = IglooEnvInfo::info()","highlight_start":23,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooEnvInfo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:230:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m230\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let link_to_dir = IglooEnvInfo::info()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooTarget` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5507,"byte_end":5518,"line_start":242,"line_end":242,"column_start":44,"column_end":55,"is_primary":true,"text":[{"text":"\tpub fn gen_openocd_config(&self, target: &IglooTarget) -> IglooErrType","highlight_start":44,"highlight_end":55}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTarget` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:242:44\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m242\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn gen_openocd_config(&self, target: &IglooTarget) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5523,"byte_end":5535,"line_start":242,"line_end":242,"column_start":60,"column_end":72,"is_primary":true,"text":[{"text":"\tpub fn gen_openocd_config(&self, target: &IglooTarget) -> IglooErrType","highlight_start":60,"highlight_end":72}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:242:60\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m242\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn gen_openocd_config(&self, target: &IglooTarget) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5554,"byte_end":5566,"line_start":244,"line_end":244,"column_start":16,"column_end":28,"is_primary":true,"text":[{"text":"\t\tlet mut ret: IglooErrType = IglooErrType::IGLOO_ERR_NONE;","highlight_start":16,"highlight_end":28}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:244:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m244\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut ret: IglooErrType = IglooErrType::IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooTarget` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":6996,"byte_end":7007,"line_start":296,"line_end":296,"column_start":38,"column_end":49,"is_primary":true,"text":[{"text":"\tpub fn gen_makefile(&self, target: &IglooTarget) -> IglooErrType","highlight_start":38,"highlight_end":49}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTarget` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:296:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m296\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn gen_makefile(&self, target: &IglooTarget) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":7012,"byte_end":7024,"line_start":296,"line_end":296,"column_start":54,"column_end":66,"is_primary":true,"text":[{"text":"\tpub fn gen_makefile(&self, target: &IglooTarget) -> IglooErrType","highlight_start":54,"highlight_end":66}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:296:54\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m296\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn gen_makefile(&self, target: &IglooTarget) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22134,"byte_end":22146,"line_start":1031,"line_end":1031,"column_start":36,"column_end":48,"is_primary":true,"text":[{"text":"\tpub fn gen_igloo_header(&self) -> IglooErrType","highlight_start":36,"highlight_end":48}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1031:36\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1031\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn gen_igloo_header(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23089,"byte_end":23101,"line_start":1071,"line_end":1071,"column_start":34,"column_end":46,"is_primary":true,"text":[{"text":"\tpub fn gen_igloo_main(&self) -> IglooErrType","highlight_start":34,"highlight_end":46}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1071:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1071\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn gen_igloo_main(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooTarget` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23624,"byte_end":23635,"line_start":1093,"line_end":1093,"column_start":6,"column_end":17,"is_primary":true,"text":[{"text":"impl IglooTarget","highlight_start":6,"highlight_end":17}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTarget` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1093:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1093\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mimpl IglooTarget\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooTarget` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23659,"byte_end":23670,"line_start":1095,"line_end":1095,"column_start":22,"column_end":33,"is_primary":true,"text":[{"text":"\tpub fn default() -> IglooTarget","highlight_start":22,"highlight_end":33}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTarget` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1095:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1095\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn default() -> IglooTarget\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find struct, variant or union type `IglooTarget` in this scope","code":{"code":"E0422","explanation":"An identifier that is neither defined nor a struct was used.\n\nErroneous code example:\n\n```compile_fail,E0422\nfn main () {\n let x = Foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `Foo` is undefined, so it inherently isn't anything, and\ndefinitely not a struct.\n\n```compile_fail\nfn main () {\n let foo = 1;\n let x = foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `foo` is defined, but is not a struct, so Rust can't use it as\none.\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23676,"byte_end":23687,"line_start":1097,"line_end":1097,"column_start":3,"column_end":14,"is_primary":true,"text":[{"text":"\t\tIglooTarget","highlight_start":3,"highlight_end":14}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0422]\u001b[0m\u001b[0m\u001b[1m: cannot find struct, variant or union type `IglooTarget` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1097:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1097\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooTarget\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `Igloo` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23837,"byte_end":23842,"line_start":1105,"line_end":1105,"column_start":21,"column_end":26,"is_primary":true,"text":[{"text":"\tpub fn from(inst: &Igloo, name_in: String,","highlight_start":21,"highlight_end":26}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::Igloo;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `Igloo` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1105:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1105\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn from(inst: &Igloo, name_in: String,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::Igloo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooTarget` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23924,"byte_end":23935,"line_start":1107,"line_end":1107,"column_start":37,"column_end":48,"is_primary":true,"text":[{"text":"\t\t\t\ttarget_man_loc: &str) -> Result","highlight_start":37,"highlight_end":48}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTarget` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1107:37\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1107\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_man_loc: &str) -> Result\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":23937,"byte_end":23949,"line_start":1107,"line_end":1107,"column_start":50,"column_end":62,"is_primary":true,"text":[{"text":"\t\t\t\ttarget_man_loc: &str) -> Result","highlight_start":50,"highlight_end":62}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1107:50\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1107\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_man_loc: &str) -> Result\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":24683,"byte_end":24688,"line_start":1133,"line_end":1133,"column_start":38,"column_end":43,"is_primary":true,"text":[{"text":"\t\t\t\t\t\t\tmakefile.insert(name, config::Value::from(newvec));","highlight_start":38,"highlight_end":43}],"label":"not found in `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::fs::sys::ext::net::sys_common::util::thread::local::os::Value;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1133:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1133\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m makefile.insert(name, config::Value::from(newvec));\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::fs::sys::ext::net::sys_common::util::thread::local::os::Value;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find struct, variant or union type `IglooTarget` in this scope","code":{"code":"E0422","explanation":"An identifier that is neither defined nor a struct was used.\n\nErroneous code example:\n\n```compile_fail,E0422\nfn main () {\n let x = Foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `Foo` is undefined, so it inherently isn't anything, and\ndefinitely not a struct.\n\n```compile_fail\nfn main () {\n let foo = 1;\n let x = foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `foo` is defined, but is not a struct, so Rust can't use it as\none.\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":24923,"byte_end":24934,"line_start":1150,"line_end":1150,"column_start":6,"column_end":17,"is_primary":true,"text":[{"text":"\t\tOk(IglooTarget","highlight_start":6,"highlight_end":17}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_target::IglooTarget;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0422]\u001b[0m\u001b[0m\u001b[1m: cannot find struct, variant or union type `IglooTarget` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1150:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1150\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m Ok(IglooTarget\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_target::IglooTarget;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooTargetManifest` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":25079,"byte_end":25098,"line_start":1160,"line_end":1160,"column_start":6,"column_end":25,"is_primary":true,"text":[{"text":"impl IglooTargetManifest","highlight_start":6,"highlight_end":25}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTargetManifest` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1160:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1160\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mimpl IglooTargetManifest\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `IglooTargetManifest` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":25122,"byte_end":25141,"line_start":1162,"line_end":1162,"column_start":22,"column_end":41,"is_primary":true,"text":[{"text":"\tpub fn default() -> IglooTargetManifest","highlight_start":22,"highlight_end":41}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTargetManifest` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1162:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1162\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn default() -> IglooTargetManifest\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find struct, variant or union type `IglooTargetManifest` in this scope","code":{"code":"E0422","explanation":"An identifier that is neither defined nor a struct was used.\n\nErroneous code example:\n\n```compile_fail,E0422\nfn main () {\n let x = Foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `Foo` is undefined, so it inherently isn't anything, and\ndefinitely not a struct.\n\n```compile_fail\nfn main () {\n let foo = 1;\n let x = foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `foo` is defined, but is not a struct, so Rust can't use it as\none.\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":25147,"byte_end":25166,"line_start":1164,"line_end":1164,"column_start":3,"column_end":22,"is_primary":true,"text":[{"text":"\t\tIglooTargetManifest","highlight_start":3,"highlight_end":22}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0422]\u001b[0m\u001b[0m\u001b[1m: cannot find struct, variant or union type `IglooTargetManifest` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1164:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1164\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooTargetManifest\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `IglooTargetManifest` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":25308,"byte_end":25327,"line_start":1172,"line_end":1172,"column_start":39,"column_end":58,"is_primary":true,"text":[{"text":"\tpub fn from(target_man_loc: &str) -> IglooTargetManifest","highlight_start":39,"highlight_end":58}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTargetManifest` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1172:39\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1172\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn from(target_man_loc: &str) -> IglooTargetManifest\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":25430,"byte_end":25434,"line_start":1177,"line_end":1177,"column_start":12,"column_end":16,"is_primary":true,"text":[{"text":"\t\t\tconfig::File::with_name(","highlight_start":12,"highlight_end":16}],"label":"not found in `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::fs::sys::process::process_common::File;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::fs::sys::rand::imp::File;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::fs::File;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1177:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1177\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m config::File::with_name(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::fs::sys::process::process_common::File;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::fs::sys::rand::imp::File;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse std::fs::File;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooEnvInfo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":25451,"byte_end":25463,"line_start":1178,"line_end":1178,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":"\t\t\t\tIglooEnvInfo::info().esfd.join(target_man_loc)","highlight_start":5,"highlight_end":17}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_project.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooEnvInfo;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooEnvInfo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1178:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1178\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(target_man_loc)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooEnvInfo;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find struct, variant or union type `IglooTargetManifest` in this scope","code":{"code":"E0422","explanation":"An identifier that is neither defined nor a struct was used.\n\nErroneous code example:\n\n```compile_fail,E0422\nfn main () {\n let x = Foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `Foo` is undefined, so it inherently isn't anything, and\ndefinitely not a struct.\n\n```compile_fail\nfn main () {\n let foo = 1;\n let x = foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `foo` is defined, but is not a struct, so Rust can't use it as\none.\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":25541,"byte_end":25560,"line_start":1182,"line_end":1182,"column_start":3,"column_end":22,"is_primary":true,"text":[{"text":"\t\tIglooTargetManifest","highlight_start":3,"highlight_end":22}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0422]\u001b[0m\u001b[0m\u001b[1m: cannot find struct, variant or union type `IglooTargetManifest` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1182:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1182\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooTargetManifest\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `HashMap` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":74,"byte_end":81,"line_start":5,"line_end":5,"column_start":9,"column_end":16,"is_primary":true,"text":[{"text":"\tlinks: HashMap,","highlight_start":9,"highlight_end":16}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::HashMap;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::fs::sys::ext::net::sys_common::util::thread::panic::collections::hash::map::base::HashMap;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::collections::HashMap;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `HashMap` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:5:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m links: HashMap,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::fs::sys::ext::net::sys_common::util::thread::panic::collections::hash::map::base::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `HashMap` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":147,"byte_end":154,"line_start":7,"line_end":7,"column_start":11,"column_end":18,"is_primary":true,"text":[{"text":"\topenocd: HashMap,","highlight_start":11,"highlight_end":18}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::HashMap;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::fs::sys::ext::net::sys_common::util::thread::panic::collections::hash::map::base::HashMap;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::collections::HashMap;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `HashMap` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:7:11\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m openocd: HashMap,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::fs::sys::ext::net::sys_common::util::thread::panic::collections::hash::map::base::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `HashMap` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":195,"byte_end":202,"line_start":8,"line_end":8,"column_start":17,"column_end":24,"is_primary":true,"text":[{"text":"\tmake_manifest: HashMap,","highlight_start":17,"highlight_end":24}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::HashMap;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::fs::sys::ext::net::sys_common::util::thread::panic::collections::hash::map::base::HashMap;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::collections::HashMap;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `HashMap` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:8:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m make_manifest: HashMap,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::fs::sys::ext::net::sys_common::util::thread::panic::collections::hash::map::base::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooTargetManifest` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":245,"byte_end":264,"line_start":9,"line_end":9,"column_start":19,"column_end":38,"is_primary":true,"text":[{"text":"\ttarget_manifest: IglooTargetManifest,","highlight_start":19,"highlight_end":38}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooTargetManifest` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:9:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m9\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_manifest: IglooTargetManifest,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":363,"byte_end":375,"line_start":15,"line_end":15,"column_start":28,"column_end":40,"is_primary":true,"text":[{"text":"\tpub fn generate(&self) -> IglooErrType","highlight_start":28,"highlight_end":40}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:15:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m15\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn generate(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":484,"byte_end":496,"line_start":22,"line_end":22,"column_start":28,"column_end":40,"is_primary":true,"text":[{"text":"\tpub fn populate(&self) -> IglooErrType","highlight_start":28,"highlight_end":40}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:22:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn populate(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find type `IglooErrType` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":668,"byte_end":680,"line_start":29,"line_end":29,"column_start":37,"column_end":49,"is_primary":true,"text":[{"text":"\tpub fn generate_makefile(&self) -> IglooErrType","highlight_start":37,"highlight_end":49}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/igloo_target.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooErrType` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:29:37\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m29\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn generate_makefile(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find value `Null` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1564,"byte_end":1568,"line_start":56,"line_end":56,"column_start":32,"column_end":36,"is_primary":true,"text":[{"text":"\t\tlet mut res: IglooInstType = Null;","highlight_start":32,"highlight_end":36}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":56,"byte_end":56,"line_start":5,"line_end":5,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooInstType::Null;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":56,"byte_end":56,"line_start":5,"line_end":5,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooInstType::Null;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `Null` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:56:32\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m56\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res: IglooInstType = Null;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooInstType::Null;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooInstType::Null;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find value `Null` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2057,"byte_end":2061,"line_start":84,"line_end":84,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":"\t\tif res == Null","highlight_start":13,"highlight_end":17}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":56,"byte_end":56,"line_start":5,"line_end":5,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooInstType::Null;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":56,"byte_end":56,"line_start":5,"line_end":5,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooInstType::Null;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `Null` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:84:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m84\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res == Null\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooInstType::Null;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooInstType::Null;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find value `ErrUnknown` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2073,"byte_end":2083,"line_start":86,"line_end":86,"column_start":8,"column_end":18,"is_primary":true,"text":[{"text":"\t\t\tErr(ErrUnknown)","highlight_start":8,"highlight_end":18}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing one of these items","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":56,"byte_end":56,"line_start":5,"line_end":5,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::IglooErrType::ErrUnknown;\n","suggestion_applicability":"Unspecified","expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":56,"byte_end":56,"line_start":5,"line_end":5,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use igloo_base::IglooErrType::ErrUnknown;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `ErrUnknown` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:86:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m86\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m Err(ErrUnknown)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these items\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::IglooErrType::ErrUnknown;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base::IglooErrType::ErrUnknown;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2395,"byte_end":2409,"line_start":97,"line_end":97,"column_start":21,"column_end":35,"is_primary":true,"text":[{"text":"\t\tlet mut res_err = IGLOO_ERR_NONE;","highlight_start":21,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:97:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m97\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `IglooPrj` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2426,"byte_end":2434,"line_start":98,"line_end":98,"column_start":16,"column_end":24,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":16,"highlight_end":24}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this struct","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":56,"byte_end":56,"line_start":5,"line_end":5,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use igloo_base::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use crate::igloo_project::IglooPrj;\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooPrj` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:98:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m98\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj: IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this struct\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_project::IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_UNKNOWN` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2492,"byte_end":2509,"line_start":101,"line_end":101,"column_start":28,"column_end":45,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,","highlight_start":28,"highlight_end":45}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_UNKNOWN` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:101:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m101\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3074,"byte_end":3088,"line_start":134,"line_end":134,"column_start":17,"column_end":31,"is_primary":true,"text":[{"text":"\t\tif res_err == IGLOO_ERR_NONE","highlight_start":17,"highlight_end":31}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:134:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m134\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err == IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"unused doc comment","code":{"code":"unused_doc_comments","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":567,"byte_end":691,"line_start":20,"line_end":24,"column_start":3,"column_end":4,"is_primary":false,"text":[{"text":"\t\tif std::path::Path::new(\".igloo\").exists()","highlight_start":3,"highlight_end":45},{"text":"\t\t{","highlight_start":1,"highlight_end":4},{"text":"\t\t\tres_err = IglooErrType::IGLOO_NEW_CALLED_INSIDE_PRJ;","highlight_start":1,"highlight_end":56},{"text":"\t\t\treturn res_err","highlight_start":1,"highlight_end":18},{"text":"\t\t}","highlight_start":1,"highlight_end":4}],"label":"rustdoc does not generate documentation for expressions","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/igloo_action.rs","byte_start":437,"byte_end":564,"line_start":17,"line_end":19,"column_start":3,"column_end":17,"is_primary":true,"text":[{"text":"\t\t/// Check if we are already inside of an igloo project","highlight_start":3,"highlight_end":57},{"text":"\t\t/// Creating an igloo project inside an igloo project","highlight_start":1,"highlight_end":56},{"text":"\t\t/// is a no no","highlight_start":1,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_doc_comments)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused doc comment\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:17:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m /// Check if we are already inside of an igloo project\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m_________^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m /// Creating an igloo project inside an igloo project\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m /// is a no no\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m|______________________^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m if std::path::Path::new(\".igloo\").exists()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m_________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m {\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m res_err = IglooErrType::IGLOO_NEW_CALLED_INSIDE_PRJ;\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m23\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m return res_err\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m24\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m }\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|_________-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mrustdoc does not generate documentation for expressions\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_doc_comments)]` on by default\u001b[0m\n\n"} +{"message":"unused doc comment","code":{"code":"unused_doc_comments","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":795,"byte_end":919,"line_start":27,"line_end":31,"column_start":3,"column_end":4,"is_primary":false,"text":[{"text":"\t\tif std::path::Path::new(prj_name).exists()","highlight_start":3,"highlight_end":45},{"text":"\t\t{","highlight_start":1,"highlight_end":4},{"text":"\t\t\tres_err = IglooErrType::IGLOO_FOLDER_ALREADY_EXISTS;","highlight_start":1,"highlight_end":56},{"text":"\t\t\treturn res_err","highlight_start":1,"highlight_end":18},{"text":"\t\t}","highlight_start":1,"highlight_end":4}],"label":"rustdoc does not generate documentation for expressions","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/igloo_action.rs","byte_start":694,"byte_end":792,"line_start":25,"line_end":26,"column_start":3,"column_end":52,"is_primary":true,"text":[{"text":"\t\t/// Check if the project folder already exists","highlight_start":3,"highlight_end":49},{"text":"\t\t/// Don't want to accidentally overwrite anything","highlight_start":1,"highlight_end":52}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused doc comment\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:25:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m25\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m /// Check if the project folder already exists\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m_________^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m26\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m /// Don't want to accidentally overwrite anything\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m|_________________________________________________________^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m27\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m if std::path::Path::new(prj_name).exists()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m_________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m28\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m {\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m29\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m res_err = IglooErrType::IGLOO_FOLDER_ALREADY_EXISTS;\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m30\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m return res_err\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m31\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m }\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|_________-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mrustdoc does not generate documentation for expressions\u001b[0m\n\n"} +{"message":"unused import: `std::os::unix::fs`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":105,"byte_end":122,"line_start":5,"line_end":5,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":"use std::os::unix::fs;","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":101,"byte_end":123,"line_start":5,"line_end":5,"column_start":1,"column_end":23,"is_primary":true,"text":[{"text":"use std::os::unix::fs;","highlight_start":1,"highlight_end":23}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::os::unix::fs`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:5:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse std::os::unix::fs;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} +{"message":"unused import: `igloo_make::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":97,"byte_end":110,"line_start":7,"line_end":7,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":"use igloo_make::*;","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":93,"byte_end":111,"line_start":7,"line_end":7,"column_start":1,"column_end":19,"is_primary":true,"text":[{"text":"use igloo_make::*;","highlight_start":1,"highlight_end":19}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `igloo_make::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:7:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_make::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"struct `Igloo` has no field named `make_manifest`","code":{"code":"E0560","explanation":"An unknown field was specified into a structure.\n\nErroneous code example:\n\n```compile_fail,E0560\nstruct Simba {\n mother: u32,\n}\n\nlet s = Simba { mother: 1, father: 0 };\n// error: structure `Simba` has no field named `father`\n```\n\nVerify you didn't misspell the field's name or that the field exists. Example:\n\n```\nstruct Simba {\n mother: u32,\n father: u32,\n}\n\nlet s = Simba { mother: 1, father: 0 }; // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1019,"byte_end":1032,"line_start":42,"line_end":42,"column_start":4,"column_end":17,"is_primary":true,"text":[{"text":"\t\t\tmake_manifest: config::Config::new(),","highlight_start":4,"highlight_end":17}],"label":"`Igloo` does not have this field","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"available fields are: `cli_conf`, `env_info`, `master_make_man`, `master_target_man`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0560]\u001b[0m\u001b[0m\u001b[1m: struct `Igloo` has no field named `make_manifest`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:42:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m42\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m make_manifest: config::Config::new(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m`Igloo` does not have this field\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: available fields are: `cli_conf`, `env_info`, `master_make_man`, `master_target_man`\u001b[0m\n\n"} +{"message":"struct `Igloo` has no field named `target_manifest`","code":{"code":"E0560","explanation":"An unknown field was specified into a structure.\n\nErroneous code example:\n\n```compile_fail,E0560\nstruct Simba {\n mother: u32,\n}\n\nlet s = Simba { mother: 1, father: 0 };\n// error: structure `Simba` has no field named `father`\n```\n\nVerify you didn't misspell the field's name or that the field exists. Example:\n\n```\nstruct Simba {\n mother: u32,\n father: u32,\n}\n\nlet s = Simba { mother: 1, father: 0 }; // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1060,"byte_end":1075,"line_start":43,"line_end":43,"column_start":4,"column_end":19,"is_primary":true,"text":[{"text":"\t\t\ttarget_manifest: config::Config::new(),","highlight_start":4,"highlight_end":19}],"label":"`Igloo` does not have this field","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"available fields are: `cli_conf`, `env_info`, `master_make_man`, `master_target_man`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0560]\u001b[0m\u001b[0m\u001b[1m: struct `Igloo` has no field named `target_manifest`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:43:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_manifest: config::Config::new(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m`Igloo` does not have this field\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: available fields are: `cli_conf`, `env_info`, `master_make_man`, `master_target_man`\u001b[0m\n\n"} +{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code example:\n\n```compile_fail,E0308\nlet x: i32 = \"I am not a number!\";\n// ~~~ ~~~~~~~~~~~~~~~~~~~~\n// | |\n// | initializing expression;\n// | compiler infers type `&str`\n// |\n// type `i32` assigned to variable `x`\n```\n\nThis error occurs when the compiler is unable to infer the concrete type of a\nvariable. It can occur in several cases, the most common being a mismatch\nbetween two types: the type the author explicitly assigned, and the type the\ncompiler inferred.\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2069,"byte_end":2084,"line_start":86,"line_end":86,"column_start":4,"column_end":19,"is_primary":true,"text":[{"text":"\t\t\tErr(ErrUnknown)","highlight_start":4,"highlight_end":19}],"label":"expected `()`, found enum `std::result::Result`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":2047,"byte_end":2088,"line_start":84,"line_end":87,"column_start":3,"column_end":4,"is_primary":false,"text":[{"text":"\t\tif res == Null","highlight_start":3,"highlight_end":17},{"text":"\t\t{","highlight_start":1,"highlight_end":4},{"text":"\t\t\tErr(ErrUnknown)","highlight_start":1,"highlight_end":19},{"text":"\t\t}","highlight_start":1,"highlight_end":4}],"label":"expected this to be `()`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected unit type `()`\n found enum `std::result::Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"try adding a semicolon","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2084,"byte_end":2084,"line_start":86,"line_end":86,"column_start":19,"column_end":19,"is_primary":true,"text":[{"text":"\t\t\tErr(ErrUnknown)","highlight_start":19,"highlight_end":19}],"label":null,"suggested_replacement":";","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null},{"message":"consider using a semicolon here","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2088,"byte_end":2088,"line_start":87,"line_end":87,"column_start":4,"column_end":4,"is_primary":true,"text":[{"text":"\t\t}","highlight_start":4,"highlight_end":4}],"label":null,"suggested_replacement":";","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0308]\u001b[0m\u001b[0m\u001b[1m: mismatched types\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:86:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m84\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m if res == Null\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m_________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m85\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m {\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m86\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m Err(ErrUnknown)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected `()`, found enum `std::result::Result`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m87\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m }\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|_________-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mexpected this to be `()`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: expected unit type `\u001b[0m\u001b[0m\u001b[1m()\u001b[0m\u001b[0m`\u001b[0m\n\u001b[0m found enum `\u001b[0m\u001b[0m\u001b[1mstd::result::Result<_, _>\u001b[0m\u001b[0m`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: try adding a semicolon\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m86\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m Err(ErrUnknown);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider using a semicolon here\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m87\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m };\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m^\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_ERR_NONE` found for enum `igloo_base::IglooErrType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2879,"byte_end":2893,"line_start":119,"line_end":119,"column_start":33,"column_end":47,"is_primary":true,"text":[{"text":"\t\t\t\tif res_err != IglooErrType::IGLOO_ERR_NONE","highlight_start":33,"highlight_end":47}],"label":"variant or associated item not found in `igloo_base::IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_ERR_NONE` found for enum `igloo_base::IglooErrType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:119:33\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m119\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err != IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `igloo_base::IglooErrType`\u001b[0m\n\n"} +{"message":"type annotations needed","code":{"code":"E0282","explanation":"The compiler could not infer a type and asked for a type annotation.\n\nErroneous code example:\n\n```compile_fail,E0282\nlet x = \"hello\".chars().rev().collect();\n```\n\nThis error indicates that type inference did not result in one unique possible\ntype, and extra information is required. In most cases this can be provided\nby adding a type annotation. Sometimes you need to specify a generic type\nparameter manually.\n\nA common example is the `collect` method on `Iterator`. It has a generic type\nparameter with a `FromIterator` bound, which for a `char` iterator is\nimplemented by `Vec` and `String` among others. Consider the following snippet\nthat reverses the characters of a string:\n\nIn the first code example, the compiler cannot infer what the type of `x` should\nbe: `Vec` and `String` are both suitable candidates. To specify which type\nto use, you can use a type annotation on `x`:\n\n```\nlet x: Vec = \"hello\".chars().rev().collect();\n```\n\nIt is not necessary to annotate the full type. Once the ambiguity is resolved,\nthe compiler can infer the rest:\n\n```\nlet x: Vec<_> = \"hello\".chars().rev().collect();\n```\n\nAnother way to provide the compiler with enough information, is to specify the\ngeneric type parameter:\n\n```\nlet x = \"hello\".chars().rev().collect::>();\n```\n\nAgain, you need not specify the full type if the compiler can infer it:\n\n```\nlet x = \"hello\".chars().rev().collect::>();\n```\n\nApart from a method or function with a generic type parameter, this error can\noccur when a type parameter of a struct or trait cannot be inferred. In that\ncase it is not always possible to use a type annotation, because all candidates\nhave the same return type. For instance:\n\n```compile_fail,E0282\nstruct Foo {\n num: T,\n}\n\nimpl Foo {\n fn bar() -> i32 {\n 0\n }\n\n fn baz() {\n let number = Foo::bar();\n }\n}\n```\n\nThis will fail because the compiler does not know which instance of `Foo` to\ncall `bar` on. Change `Foo::bar()` to `Foo::::bar()` to resolve the error.\n"},"level":"error","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":615,"byte_end":627,"line_start":29,"line_end":29,"column_start":17,"column_end":29,"is_primary":true,"text":[{"text":"\t\t\ttarget_bank: Vec::default(),","highlight_start":17,"highlight_end":29}],"label":"cannot infer type for type parameter `T` declared on the struct `Vec`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0282]\u001b[0m\u001b[0m\u001b[1m: type annotations needed\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:29:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m29\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_bank: Vec::default(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcannot infer type for type parameter `T` declared on the struct `Vec`\u001b[0m\n\n"} +{"message":"aborting due to 87 previous errors; 4 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 87 previous errors; 4 warnings emitted\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0282, E0308, E0412, E0422, E0425, E0432, E0433, E0560, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0282, E0308, E0412, E0422, E0425, E0432, E0433, E0560, E0599.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0282`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0282`.\u001b[0m\n"} diff --git a/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/invoked.timestamp b/target/debug/.fingerprint/igloo_core-17a783c5c2ef1510/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-17a783c5c2ef1510/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-17a783c5c2ef1510/output-test-lib-igloo_core b/target/debug/.fingerprint/igloo_core-17a783c5c2ef1510/output-test-lib-igloo_core new file mode 100644 index 0000000..894cebb --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-17a783c5c2ef1510/output-test-lib-igloo_core @@ -0,0 +1,15 @@ +{"message":"expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found keyword `self`","code":null,"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2708,"byte_end":2708,"line_start":100,"line_end":100,"column_start":8,"column_end":8,"is_primary":false,"text":[{"text":"\t\tget_m","highlight_start":8,"highlight_end":8}],"label":"expected one of 8 possible tokens","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":2711,"byte_end":2715,"line_start":101,"line_end":101,"column_start":3,"column_end":7,"is_primary":true,"text":[{"text":"\t\tself.target_manifest.merge(","highlight_start":3,"highlight_end":7}],"label":"unexpected token","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found keyword `self`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:101:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m get_m\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mexpected one of 8 possible tokens\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m101\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m self.target_manifest.merge(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9munexpected token\u001b[0m\n\n"} +{"message":"unresolved import `igloo_manifest`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":63,"byte_end":77,"line_start":5,"line_end":5,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":"use igloo_manifest::*;","highlight_start":5,"highlight_end":19}],"label":"use of undeclared type or module `igloo_manifest`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `igloo_manifest`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:5:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_manifest::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `igloo_manifest`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooEnvInfo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2065,"byte_end":2077,"line_start":82,"line_end":82,"column_start":14,"column_end":26,"is_primary":true,"text":[{"text":"\t\t\tenv_info: IglooEnvInfo::info(),","highlight_start":14,"highlight_end":26}],"label":"use of undeclared type or module `IglooEnvInfo`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooEnvInfo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:82:14\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m82\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m env_info: IglooEnvInfo::info(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooEnvInfo`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooAction`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4296,"byte_end":4307,"line_start":169,"line_end":169,"column_start":20,"column_end":31,"is_primary":true,"text":[{"text":"\t\t\t\t\tlet res_err = IglooAction::new(","highlight_start":20,"highlight_end":31}],"label":"use of undeclared type or module `IglooAction`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooAction`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:169:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m169\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let res_err = IglooAction::new(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooAction`\u001b[0m\n\n"} +{"message":"cannot find type `IglooEnvInfo` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1545,"byte_end":1557,"line_start":65,"line_end":65,"column_start":16,"column_end":28,"is_primary":true,"text":[{"text":"\tpub env_info: IglooEnvInfo,","highlight_start":16,"highlight_end":28}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooEnvInfo` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:65:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m65\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub env_info: IglooEnvInfo,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2626,"byte_end":2640,"line_start":97,"line_end":97,"column_start":23,"column_end":37,"is_primary":true,"text":[{"text":"\t\tlet mut res_error = IGLOO_ERR_NONE;","highlight_start":23,"highlight_end":37}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:97:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m97\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_error = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_NULL` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2663,"byte_end":2673,"line_start":98,"line_end":98,"column_start":22,"column_end":32,"is_primary":true,"text":[{"text":"\t\tlet mut res_type = IGLOO_NULL;","highlight_start":22,"highlight_end":32}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_NULL` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:98:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m98\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_type = IGLOO_NULL;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3819,"byte_end":3833,"line_start":147,"line_end":147,"column_start":21,"column_end":35,"is_primary":true,"text":[{"text":"\t\tlet mut res_err = IGLOO_ERR_NONE;","highlight_start":21,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:147:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m147\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `IglooPrj` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3850,"byte_end":3858,"line_start":148,"line_end":148,"column_start":16,"column_end":24,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":16,"highlight_end":24}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooPrj` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:148:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m148\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj: IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_UNKNOWN` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3916,"byte_end":3933,"line_start":151,"line_end":151,"column_start":28,"column_end":45,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,","highlight_start":28,"highlight_end":45}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_UNKNOWN` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:151:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m151\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4605,"byte_end":4619,"line_start":192,"line_end":192,"column_start":17,"column_end":31,"is_primary":true,"text":[{"text":"\t\tif res_err == IGLOO_ERR_NONE","highlight_start":17,"highlight_end":31}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:192:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m192\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err == IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":376,"byte_end":397,"line_start":31,"line_end":31,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum IglooErrType","highlight_start":1,"highlight_end":22}],"label":"variant or associated item `IGLOO_ERR_NONE` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":4378,"byte_end":4392,"line_start":171,"line_end":171,"column_start":34,"column_end":48,"is_primary":true,"text":[{"text":"\t\t\t\t\tif res_err != IglooErrType::IGLOO_ERR_NONE","highlight_start":34,"highlight_end":48}],"label":"variant or associated item not found in `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:171:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m31\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_ERR_NONE` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m171\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err != IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooErrType`\u001b[0m\n\n"} +{"message":"aborting due to 12 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 12 previous errors\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0412, E0425, E0432, E0433, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0412, E0425, E0432, E0433, E0599.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo_core-200494adb085d67c/dep-lib-igloo_core b/target/debug/.fingerprint/igloo_core-200494adb085d67c/dep-lib-igloo_core new file mode 100644 index 0000000..c381219 Binary files /dev/null and b/target/debug/.fingerprint/igloo_core-200494adb085d67c/dep-lib-igloo_core differ diff --git a/target/release/.fingerprint/proc-macro-error-18051370c307f317/invoked.timestamp b/target/debug/.fingerprint/igloo_core-200494adb085d67c/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/proc-macro-error-18051370c307f317/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-200494adb085d67c/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-200494adb085d67c/lib-igloo_core b/target/debug/.fingerprint/igloo_core-200494adb085d67c/lib-igloo_core new file mode 100644 index 0000000..40f5cb1 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-200494adb085d67c/lib-igloo_core @@ -0,0 +1 @@ +1a9ed6367117c028 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_core-200494adb085d67c/lib-igloo_core.json b/target/debug/.fingerprint/igloo_core-200494adb085d67c/lib-igloo_core.json new file mode 100644 index 0000000..a3e68d2 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-200494adb085d67c/lib-igloo_core.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":14479087594405346722,"profile":18074012566298724745,"path":5733077946338526592,"deps":[[120200842360645998,"igloo_base",false,2546000521198750159],[300900241173941925,"zmq",false,12754612217412315116],[1122423871155493656,"config",false,5716277277819123494],[6648631751136337537,"igloo_make",false,5440744294530278495],[9492746702086754917,"igloo_manifest",false,8620851192523557116],[12003688265259193345,"clap",false,17337329443654176458],[16739089134865246075,"igloo_cli",false,11127943518352648208]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_core-200494adb085d67c/dep-lib-igloo_core"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_core-200494adb085d67c/output-lib-igloo_core b/target/debug/.fingerprint/igloo_core-200494adb085d67c/output-lib-igloo_core new file mode 100644 index 0000000..3e0385f --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-200494adb085d67c/output-lib-igloo_core @@ -0,0 +1,37 @@ +{"message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":"unreachable pattern","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":false,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":"matches any value","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unreachable_patterns)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:134:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m130\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_FLASH =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-----------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mmatches any value\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m134\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_RUN =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33munreachable pattern\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unreachable_patterns)]` on by default\u001b[0m\n\n"} +{"message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3068,"byte_end":3069,"line_start":138,"line_end":138,"column_start":4,"column_end":5,"is_primary":true,"text":[{"text":"\t\t\t_ => println!(\"Unhandled case: {:?}\", inst_type),","highlight_start":4,"highlight_end":5}],"label":"unreachable pattern","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":false,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":"matches any value","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:138:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m130\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_FLASH =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-----------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mmatches any value\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m138\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m _ => println!(\"Unhandled case: {:?}\", inst_type),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33munreachable pattern\u001b[0m\n\n"} +{"message":"value assigned to `res` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1649,"byte_end":1656,"line_start":62,"line_end":62,"column_start":7,"column_end":14,"is_primary":true,"text":[{"text":"\t\tlet mut res: IglooInstType = Null;","highlight_start":7,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_assignments)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: value assigned to `res` is never read\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:62:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m62\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res: IglooInstType = Null;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_assignments)]` on by default\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: maybe it is overwritten before being read?\u001b[0m\n\n"} +{"message":"unused variable: `prj`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2532,"byte_end":2539,"line_start":104,"line_end":104,"column_start":7,"column_end":14,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":7,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2532,"byte_end":2539,"line_start":104,"line_end":104,"column_start":7,"column_end":14,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":7,"highlight_end":14}],"label":null,"suggested_replacement":"_prj","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `prj`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:104:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m104\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj: IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_prj`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"} +{"message":"unused variable: `IGLOO_FLASH`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":"_IGLOO_FLASH","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `IGLOO_FLASH`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:130:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m130\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_FLASH =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_IGLOO_FLASH`\u001b[0m\n\n"} +{"message":"unused variable: `IGLOO_RUN`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":"_IGLOO_RUN","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `IGLOO_RUN`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:134:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m134\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_RUN =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_IGLOO_RUN`\u001b[0m\n\n"} +{"message":"unused variable: `prj_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":119,"byte_end":127,"line_start":7,"line_end":7,"column_start":12,"column_end":20,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":12,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":119,"byte_end":127,"line_start":7,"line_end":7,"column_start":12,"column_end":20,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":12,"highlight_end":20}],"label":null,"suggested_replacement":"_prj_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `prj_name`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:7:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn run(prj_name: &str, target: &str) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_prj_name`\u001b[0m\n\n"} +{"message":"unused variable: `target`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":135,"byte_end":141,"line_start":7,"line_end":7,"column_start":28,"column_end":34,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":28,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":135,"byte_end":141,"line_start":7,"line_end":7,"column_start":28,"column_end":34,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":28,"highlight_end":34}],"label":null,"suggested_replacement":"_target","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `target`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:7:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn run(prj_name: &str, target: &str) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_target`\u001b[0m\n\n"} +{"message":"value assigned to `res_err` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":300,"byte_end":311,"line_start":16,"line_end":16,"column_start":6,"column_end":17,"is_primary":true,"text":[{"text":"\tlet mut res_err: IglooErrType = ErrNone;","highlight_start":6,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: value assigned to `res_err` is never read\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:16:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err: IglooErrType = ErrNone;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: maybe it is overwritten before being read?\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":767,"byte_end":778,"line_start":33,"line_end":33,"column_start":6,"column_end":17,"is_primary":true,"text":[{"text":"\tlet mut project = IglooPrj::new(inst, prj_name, target);","highlight_start":6,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":767,"byte_end":771,"line_start":33,"line_end":33,"column_start":6,"column_end":10,"is_primary":true,"text":[{"text":"\tlet mut project = IglooPrj::new(inst, prj_name, target);","highlight_start":6,"highlight_end":10}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:33:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m33\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut project = IglooPrj::new(inst, prj_name, target);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3839,"byte_end":3851,"line_start":185,"line_end":185,"column_start":7,"column_end":19,"is_primary":true,"text":[{"text":"\t\tlet mut prj_root = self.project_dir.join(\".igloo\");","highlight_start":7,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3839,"byte_end":3843,"line_start":185,"line_end":185,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut prj_root = self.project_dir.join(\".igloo\");","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:185:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m185\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj_root = self.project_dir.join(\".igloo\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3932,"byte_end":3947,"line_start":188,"line_end":188,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"\t\t\tlet mut target_root = prj_root.join(&(\"target/\".to_owned() + &target.name));","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3932,"byte_end":3936,"line_start":188,"line_end":188,"column_start":8,"column_end":12,"is_primary":true,"text":[{"text":"\t\t\tlet mut target_root = prj_root.join(&(\"target/\".to_owned() + &target.name));","highlight_start":8,"highlight_end":12}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:188:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut target_root = prj_root.join(&(\"target/\".to_owned() + &target.name));\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4191,"byte_end":4206,"line_start":197,"line_end":197,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"\t\t\tlet mut scripts_dir = target_root.join(\"scripts\");","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4191,"byte_end":4195,"line_start":197,"line_end":197,"column_start":8,"column_end":12,"is_primary":true,"text":[{"text":"\t\t\tlet mut scripts_dir = target_root.join(\"scripts\");","highlight_start":8,"highlight_end":12}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:197:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m197\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut scripts_dir = target_root.join(\"scripts\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4400,"byte_end":4421,"line_start":206,"line_end":206,"column_start":8,"column_end":29,"is_primary":true,"text":[{"text":"\t\t\tlet mut gdb_scripts_paths = std::fs::read_dir(","highlight_start":8,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4400,"byte_end":4404,"line_start":206,"line_end":206,"column_start":8,"column_end":12,"is_primary":true,"text":[{"text":"\t\t\tlet mut gdb_scripts_paths = std::fs::read_dir(","highlight_start":8,"highlight_end":12}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:206:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m206\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut gdb_scripts_paths = std::fs::read_dir(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5080,"byte_end":5095,"line_start":234,"line_end":234,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"\t\t\tlet mut prj_esf_dir = self.project_dir.join(\"ESF\");","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5080,"byte_end":5084,"line_start":234,"line_end":234,"column_start":8,"column_end":12,"is_primary":true,"text":[{"text":"\t\t\tlet mut prj_esf_dir = self.project_dir.join(\"ESF\");","highlight_start":8,"highlight_end":12}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:234:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m234\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj_esf_dir = self.project_dir.join(\"ESF\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5548,"byte_end":5555,"line_start":251,"line_end":251,"column_start":7,"column_end":14,"is_primary":true,"text":[{"text":"\t\tlet mut ret: IglooErrType = ErrNone;","highlight_start":7,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5548,"byte_end":5552,"line_start":251,"line_end":251,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut ret: IglooErrType = ErrNone;","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:251:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m251\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut ret: IglooErrType = ErrNone;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":6950,"byte_end":6962,"line_start":302,"line_end":302,"column_start":7,"column_end":19,"is_primary":true,"text":[{"text":"\t\tlet mut prj_root = self.project_dir.join(\".igloo/target\");","highlight_start":7,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":6950,"byte_end":6954,"line_start":302,"line_end":302,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut prj_root = self.project_dir.join(\".igloo/target\");","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:302:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m302\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj_root = self.project_dir.join(\".igloo/target\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":7011,"byte_end":7026,"line_start":303,"line_end":303,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"\t\tlet mut target_root = prj_root.join(&target.name);","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":7011,"byte_end":7015,"line_start":303,"line_end":303,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut target_root = prj_root.join(&target.name);","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:303:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m303\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut target_root = prj_root.join(&target.name);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22058,"byte_end":22069,"line_start":1035,"line_end":1035,"column_start":7,"column_end":18,"is_primary":true,"text":[{"text":"\t\tlet mut inc_dir = self.project_dir.join(\"inc\");","highlight_start":7,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22058,"byte_end":22062,"line_start":1035,"line_end":1035,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut inc_dir = self.project_dir.join(\"inc\");","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1035:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1035\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut inc_dir = self.project_dir.join(\"inc\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22955,"byte_end":22966,"line_start":1075,"line_end":1075,"column_start":7,"column_end":18,"is_primary":true,"text":[{"text":"\t\tlet mut src_dir = self.project_dir.join(\"src\");","highlight_start":7,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22955,"byte_end":22959,"line_start":1075,"line_end":1075,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut src_dir = self.project_dir.join(\"src\");","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1075:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1075\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut src_dir = self.project_dir.join(\"src\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"function is never used: `run`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":115,"byte_end":118,"line_start":7,"line_end":7,"column_start":8,"column_end":11,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":8,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function is never used: `run`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:7:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn run(prj_name: &str, target: &str) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"} +{"message":"associated function is never used: `default`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":631,"byte_end":638,"line_start":31,"line_end":31,"column_start":9,"column_end":16,"is_primary":true,"text":[{"text":"\tpub fn default() -> IglooPrj","highlight_start":9,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `default`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:31:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m31\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn default() -> IglooPrj\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `debugManifests`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3424,"byte_end":3438,"line_start":165,"line_end":165,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":"\tpub fn debugManifests(&self)","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `debugManifests`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:165:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m165\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn debugManifests(&self)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `default`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":440,"byte_end":447,"line_start":19,"line_end":19,"column_start":9,"column_end":16,"is_primary":true,"text":[{"text":"\tpub fn default() -> IglooTarget","highlight_start":9,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `default`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:19:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn default() -> IglooTarget\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `generate`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":2373,"byte_end":2381,"line_start":100,"line_end":100,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":"\tpub fn generate(&self) -> IglooErrType","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `generate`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:100:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn generate(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `populate`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":2480,"byte_end":2488,"line_start":107,"line_end":107,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":"\tpub fn populate(&self) -> IglooErrType","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `populate`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:107:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m107\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn populate(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `generate_makefile`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":2641,"byte_end":2658,"line_start":114,"line_end":114,"column_start":9,"column_end":26,"is_primary":true,"text":[{"text":"\tpub fn generate_makefile(&self) -> IglooErrType","highlight_start":9,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `generate_makefile`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:114:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m114\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn generate_makefile(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"field is never read: `env_info`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":598,"byte_end":620,"line_start":30,"line_end":30,"column_start":2,"column_end":24,"is_primary":true,"text":[{"text":"\tenv_info: IglooEnvInfo,","highlight_start":2,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: field is never read: `env_info`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:30:2\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m30\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m env_info: IglooEnvInfo,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"variable `IGLOO_FLASH` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_snake_case)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":"igloo_flash","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable `IGLOO_FLASH` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:130:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m130\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_FLASH =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `igloo_flash`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(non_snake_case)]` on by default\u001b[0m\n\n"} +{"message":"variable `IGLOO_RUN` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":"igloo_run","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable `IGLOO_RUN` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:134:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m134\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_RUN =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `igloo_run`\u001b[0m\n\n"} +{"message":"variable `nameIn` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":811,"byte_end":817,"line_start":41,"line_end":41,"column_start":27,"column_end":33,"is_primary":true,"text":[{"text":"\tpub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)","highlight_start":27,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":811,"byte_end":817,"line_start":41,"line_end":41,"column_start":27,"column_end":33,"is_primary":true,"text":[{"text":"\tpub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)","highlight_start":27,"highlight_end":33}],"label":null,"suggested_replacement":"name_in","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable `nameIn` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:41:27\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m41\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `name_in`\u001b[0m\n\n"} +{"message":"variable `targetIn` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":825,"byte_end":833,"line_start":41,"line_end":41,"column_start":41,"column_end":49,"is_primary":true,"text":[{"text":"\tpub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)","highlight_start":41,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":825,"byte_end":833,"line_start":41,"line_end":41,"column_start":41,"column_end":49,"is_primary":true,"text":[{"text":"\tpub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)","highlight_start":41,"highlight_end":49}],"label":null,"suggested_replacement":"target_in","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable `targetIn` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:41:41\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m41\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `target_in`\u001b[0m\n\n"} +{"message":"method `debugManifests` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3424,"byte_end":3438,"line_start":165,"line_end":165,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":"\tpub fn debugManifests(&self)","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3424,"byte_end":3438,"line_start":165,"line_end":165,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":"\tpub fn debugManifests(&self)","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":"debug_manifests","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: method `debugManifests` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:165:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m165\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn debugManifests(&self)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `debug_manifests`\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4978,"byte_end":5065,"line_start":229,"line_end":230,"column_start":5,"column_end":60,"is_primary":true,"text":[{"text":"\t\t\t\tstd::os::unix::fs::symlink(","highlight_start":5,"highlight_end":32},{"text":"\t\t\t\t\t&file, &scripts_dir.join(&file.file_name().unwrap()));","highlight_start":1,"highlight_end":60}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_must_use)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:229:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m229\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m std::os::unix::fs::symlink(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m_________________^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m230\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m &file, &scripts_dir.join(&file.file_name().unwrap()));\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m|__________________________________________________________________________^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_must_use)]` on by default\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5797,"byte_end":5853,"line_start":258,"line_end":258,"column_start":4,"column_end":60,"is_primary":true,"text":[{"text":"\t\t\tstd::fs::remove_file(openocd_cfg.with_extension(\"cfg\"));","highlight_start":4,"highlight_end":60}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:258:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m258\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m std::fs::remove_file(openocd_cfg.with_extension(\"cfg\"));\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"/home/penguin/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/macros/mod.rs","byte_start":15427,"byte_end":15476,"line_start":461,"line_end":461,"column_start":9,"column_end":58,"is_primary":true,"text":[{"text":" $dst.write_fmt($crate::format_args_nl!($($arg)*))","highlight_start":9,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"igloo_core/src/igloo_project.rs","byte_start":6603,"byte_end":6655,"line_start":287,"line_end":287,"column_start":3,"column_end":55,"is_primary":false,"text":[{"text":"\t\twriteln!(ocfg_file, \"set CHIPNAME {}\", target.name);","highlight_start":3,"highlight_end":55}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"writeln!","def_site_span":{"file_name":"/home/penguin/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/macros/mod.rs","byte_start":15239,"byte_end":15485,"line_start":453,"line_end":463,"column_start":1,"column_end":2,"is_primary":false,"text":[{"text":"macro_rules! writeln {","highlight_start":1,"highlight_end":1},{"text":" ($dst:expr) => (","highlight_start":1,"highlight_end":1},{"text":" $crate::write!($dst, \"\\n\")","highlight_start":1,"highlight_end":1},{"text":" );","highlight_start":1,"highlight_end":1},{"text":" ($dst:expr,) => (","highlight_start":1,"highlight_end":1},{"text":" $crate::writeln!($dst)","highlight_start":1,"highlight_end":1},{"text":" );","highlight_start":1,"highlight_end":1},{"text":" ($dst:expr, $($arg:tt)*) => (","highlight_start":1,"highlight_end":1},{"text":" $dst.write_fmt($crate::format_args_nl!($($arg)*))","highlight_start":1,"highlight_end":1},{"text":" );","highlight_start":1,"highlight_end":1},{"text":"}","highlight_start":1,"highlight_end":2}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:287:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m287\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m writeln!(ocfg_file, \"set CHIPNAME {}\", target.name);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)\u001b[0m\n\n"} +{"message":"36 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 36 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/invoked.timestamp b/target/debug/.fingerprint/igloo_core-47b1337f5ca5972c/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-47b1337f5ca5972c/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-47b1337f5ca5972c/output-lib-igloo_core b/target/debug/.fingerprint/igloo_core-47b1337f5ca5972c/output-lib-igloo_core new file mode 100644 index 0000000..9eac8a9 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-47b1337f5ca5972c/output-lib-igloo_core @@ -0,0 +1,15 @@ +{"message":"expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found keyword `self`","code":null,"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2678,"byte_end":2678,"line_start":98,"line_end":98,"column_start":8,"column_end":8,"is_primary":false,"text":[{"text":"\t\tget_m","highlight_start":8,"highlight_end":8}],"label":"expected one of 8 possible tokens","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":2681,"byte_end":2685,"line_start":99,"line_end":99,"column_start":3,"column_end":7,"is_primary":true,"text":[{"text":"\t\tself.target_manifest.merge(","highlight_start":3,"highlight_end":7}],"label":"unexpected token","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found keyword `self`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:99:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m98\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m get_m\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mexpected one of 8 possible tokens\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m99\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m self.target_manifest.merge(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9munexpected token\u001b[0m\n\n"} +{"message":"unresolved import `crate::igloo_cli`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":43,"byte_end":52,"line_start":4,"line_end":4,"column_start":12,"column_end":21,"is_primary":true,"text":[{"text":"use crate::igloo_cli::*;","highlight_start":12,"highlight_end":21}],"label":"maybe a missing crate `igloo_cli`?","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::igloo_cli`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:4:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_cli::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmaybe a missing crate `igloo_cli`?\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooAction`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4266,"byte_end":4277,"line_start":167,"line_end":167,"column_start":20,"column_end":31,"is_primary":true,"text":[{"text":"\t\t\t\t\tlet res_err = IglooAction::new(","highlight_start":20,"highlight_end":31}],"label":"use of undeclared type or module `IglooAction`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooAction`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:167:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m167\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let res_err = IglooAction::new(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooAction`\u001b[0m\n\n"} +{"message":"cannot find function `igloo_app` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2154,"byte_end":2163,"line_start":83,"line_end":83,"column_start":14,"column_end":23,"is_primary":true,"text":[{"text":"\t\t\tcli_conf: igloo_app(),","highlight_start":14,"highlight_end":23}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find function `igloo_app` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:83:14\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m83\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m cli_conf: igloo_app(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2596,"byte_end":2610,"line_start":95,"line_end":95,"column_start":23,"column_end":37,"is_primary":true,"text":[{"text":"\t\tlet mut res_error = IGLOO_ERR_NONE;","highlight_start":23,"highlight_end":37}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:95:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m95\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_error = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_NULL` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2633,"byte_end":2643,"line_start":96,"line_end":96,"column_start":22,"column_end":32,"is_primary":true,"text":[{"text":"\t\tlet mut res_type = IGLOO_NULL;","highlight_start":22,"highlight_end":32}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_NULL` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:96:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m96\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_type = IGLOO_NULL;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3789,"byte_end":3803,"line_start":145,"line_end":145,"column_start":21,"column_end":35,"is_primary":true,"text":[{"text":"\t\tlet mut res_err = IGLOO_ERR_NONE;","highlight_start":21,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:145:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m145\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `IglooPrj` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3820,"byte_end":3828,"line_start":146,"line_end":146,"column_start":16,"column_end":24,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":16,"highlight_end":24}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooPrj` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:146:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m146\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj: IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_UNKNOWN` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3886,"byte_end":3903,"line_start":149,"line_end":149,"column_start":28,"column_end":45,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,","highlight_start":28,"highlight_end":45}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_UNKNOWN` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:149:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m149\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4575,"byte_end":4589,"line_start":190,"line_end":190,"column_start":17,"column_end":31,"is_primary":true,"text":[{"text":"\t\tif res_err == IGLOO_ERR_NONE","highlight_start":17,"highlight_end":31}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:190:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m190\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err == IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.","code":{"code":"deprecated","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/env_info.rs","byte_start":423,"byte_end":441,"line_start":24,"line_end":24,"column_start":8,"column_end":26,"is_primary":true,"text":[{"text":"\t\t\thd: std::env::home_dir().unwrap(),","highlight_start":8,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(deprecated)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/env_info.rs:24:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m24\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m hd: std::env::home_dir().unwrap(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(deprecated)]` on by default\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":350,"byte_end":371,"line_start":29,"line_end":29,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum IglooErrType","highlight_start":1,"highlight_end":22}],"label":"variant or associated item `IGLOO_ERR_NONE` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":4348,"byte_end":4362,"line_start":169,"line_end":169,"column_start":34,"column_end":48,"is_primary":true,"text":[{"text":"\t\t\t\t\tif res_err != IglooErrType::IGLOO_ERR_NONE","highlight_start":34,"highlight_end":48}],"label":"variant or associated item not found in `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:169:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m29\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_ERR_NONE` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m169\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err != IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooErrType`\u001b[0m\n\n"} +{"message":"aborting due to 11 previous errors; 1 warning emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 11 previous errors; 1 warning emitted\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0412, E0425, E0432, E0433, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0412, E0425, E0432, E0433, E0599.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/invoked.timestamp b/target/debug/.fingerprint/igloo_core-5e6b4a4d28835145/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-5e6b4a4d28835145/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-5e6b4a4d28835145/output-test-lib-igloo_core b/target/debug/.fingerprint/igloo_core-5e6b4a4d28835145/output-test-lib-igloo_core new file mode 100644 index 0000000..26728d2 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-5e6b4a4d28835145/output-test-lib-igloo_core @@ -0,0 +1,5 @@ +{"message":"expected one of `=>`, `if`, or `|`, found `(`","code":null,"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1784,"byte_end":1785,"line_start":65,"line_end":65,"column_start":5,"column_end":6,"is_primary":true,"text":[{"text":"\t\t\t_(e) =>","highlight_start":5,"highlight_end":6}],"label":"expected one of `=>`, `if`, or `|`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: expected one of `=>`, `if`, or `|`, found `(`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:65:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m65\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m _(e) =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected one of `=>`, `if`, or `|`\u001b[0m\n\n"} +{"message":"expected one of `=>`, `if`, or `|`, found `(`","code":null,"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1933,"byte_end":1934,"line_start":74,"line_end":74,"column_start":5,"column_end":6,"is_primary":true,"text":[{"text":"\t\t\t_(e) =>","highlight_start":5,"highlight_end":6}],"label":"expected one of `=>`, `if`, or `|`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: expected one of `=>`, `if`, or `|`, found `(`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:74:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m74\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m _(e) =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected one of `=>`, `if`, or `|`\u001b[0m\n\n"} +{"message":"can't find crate for `clap`","code":{"code":"E0463","explanation":"A plugin/crate was declared but cannot be found.\n\nErroneous code example:\n\n```compile_fail,E0463\n#![feature(plugin)]\n#![plugin(cookie_monster)] // error: can't find crate for `cookie_monster`\nextern crate cake_is_a_lie; // error: can't find crate for `cake_is_a_lie`\n```\n\nYou need to link your code to the relevant crate in order to be able to use it\n(through Cargo or the `-L` option of rustc example). Plugins are crates as\nwell, and you link to them the same way.\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":0,"byte_end":18,"line_start":1,"line_end":1,"column_start":1,"column_end":19,"is_primary":true,"text":[{"text":"extern crate clap;","highlight_start":1,"highlight_end":19}],"label":"can't find crate","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0463]\u001b[0m\u001b[0m\u001b[1m: can't find crate for `clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:1:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mextern crate clap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcan't find crate\u001b[0m\n\n"} +{"message":"aborting due to 3 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 3 previous errors\u001b[0m\n\n"} +{"message":"For more information about this error, try `rustc --explain E0463`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0463`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/dep-test-lib-igloo_core b/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/dep-test-lib-igloo_core new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/dep-test-lib-igloo_core differ diff --git a/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/invoked.timestamp b/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/output-test-lib-igloo_core b/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/output-test-lib-igloo_core new file mode 100644 index 0000000..45ba717 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/output-test-lib-igloo_core @@ -0,0 +1,3 @@ +{"message":"can't find crate for `clap`","code":{"code":"E0463","explanation":"A plugin/crate was declared but cannot be found.\n\nErroneous code example:\n\n```compile_fail,E0463\n#![feature(plugin)]\n#![plugin(cookie_monster)] // error: can't find crate for `cookie_monster`\nextern crate cake_is_a_lie; // error: can't find crate for `cake_is_a_lie`\n```\n\nYou need to link your code to the relevant crate in order to be able to use it\n(through Cargo or the `-L` option of rustc example). Plugins are crates as\nwell, and you link to them the same way.\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":0,"byte_end":18,"line_start":1,"line_end":1,"column_start":1,"column_end":19,"is_primary":true,"text":[{"text":"extern crate clap;","highlight_start":1,"highlight_end":19}],"label":"can't find crate","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0463]\u001b[0m\u001b[0m\u001b[1m: can't find crate for `clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:1:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mextern crate clap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcan't find crate\u001b[0m\n\n"} +{"message":"aborting due to previous error","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to previous error\u001b[0m\n\n"} +{"message":"For more information about this error, try `rustc --explain E0463`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0463`.\u001b[0m\n"} diff --git a/target/release/build/libc-fc4010789fc5747b/stderr b/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/test-lib-igloo_core similarity index 100% rename from target/release/build/libc-fc4010789fc5747b/stderr rename to target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/test-lib-igloo_core diff --git a/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/test-lib-igloo_core.json b/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/test-lib-igloo_core.json new file mode 100644 index 0000000..557e6fd --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-6f5c68f37e3aea30/test-lib-igloo_core.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":14479087594405346722,"profile":10655494245791646288,"path":5733077946338526592,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_core-6f5c68f37e3aea30/dep-test-lib-igloo_core"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/dep-lib-igloo_core b/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/dep-lib-igloo_core new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/dep-lib-igloo_core differ diff --git a/target/release/.fingerprint/proc-macro2-136efe43110f6f45/invoked.timestamp b/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/proc-macro2-136efe43110f6f45/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/lib-igloo_core b/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/lib-igloo_core new file mode 100644 index 0000000..1ca4644 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/lib-igloo_core @@ -0,0 +1 @@ +c999a1efb19ed96a \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/lib-igloo_core.json b/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/lib-igloo_core.json new file mode 100644 index 0000000..14bd0f1 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-7bdc6f016fec94ba/lib-igloo_core.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":14479087594405346722,"profile":18074012566298724745,"path":5733077946338526592,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_core-7bdc6f016fec94ba/dep-lib-igloo_core"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/invoked.timestamp b/target/debug/.fingerprint/igloo_core-7ccf6625cc2d6914/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/proc-macro2-8c3af62c3486e469/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-7ccf6625cc2d6914/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-7ccf6625cc2d6914/output-test-lib-igloo_core b/target/debug/.fingerprint/igloo_core-7ccf6625cc2d6914/output-test-lib-igloo_core new file mode 100644 index 0000000..010d758 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-7ccf6625cc2d6914/output-test-lib-igloo_core @@ -0,0 +1,14 @@ +{"message":"expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found keyword `self`","code":null,"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2655,"byte_end":2655,"line_start":99,"line_end":99,"column_start":8,"column_end":8,"is_primary":false,"text":[{"text":"\t\tget_m","highlight_start":8,"highlight_end":8}],"label":"expected one of 8 possible tokens","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":2658,"byte_end":2662,"line_start":100,"line_end":100,"column_start":3,"column_end":7,"is_primary":true,"text":[{"text":"\t\tself.target_manifest.merge(","highlight_start":3,"highlight_end":7}],"label":"unexpected token","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found keyword `self`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:100:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m99\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m get_m\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mexpected one of 8 possible tokens\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m self.target_manifest.merge(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9munexpected token\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooAction`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4243,"byte_end":4254,"line_start":168,"line_end":168,"column_start":20,"column_end":31,"is_primary":true,"text":[{"text":"\t\t\t\t\tlet res_err = IglooAction::new(","highlight_start":20,"highlight_end":31}],"label":"use of undeclared type or module `IglooAction`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooAction`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:168:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m168\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let res_err = IglooAction::new(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooAction`\u001b[0m\n\n"} +{"message":"cannot find function `igloo_app` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2131,"byte_end":2140,"line_start":84,"line_end":84,"column_start":14,"column_end":23,"is_primary":true,"text":[{"text":"\t\t\tcli_conf: igloo_app(),","highlight_start":14,"highlight_end":23}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find function `igloo_app` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:84:14\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m84\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m cli_conf: igloo_app(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2573,"byte_end":2587,"line_start":96,"line_end":96,"column_start":23,"column_end":37,"is_primary":true,"text":[{"text":"\t\tlet mut res_error = IGLOO_ERR_NONE;","highlight_start":23,"highlight_end":37}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:96:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m96\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_error = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_NULL` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2610,"byte_end":2620,"line_start":97,"line_end":97,"column_start":22,"column_end":32,"is_primary":true,"text":[{"text":"\t\tlet mut res_type = IGLOO_NULL;","highlight_start":22,"highlight_end":32}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_NULL` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:97:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m97\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_type = IGLOO_NULL;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3766,"byte_end":3780,"line_start":146,"line_end":146,"column_start":21,"column_end":35,"is_primary":true,"text":[{"text":"\t\tlet mut res_err = IGLOO_ERR_NONE;","highlight_start":21,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:146:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m146\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `IglooPrj` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3797,"byte_end":3805,"line_start":147,"line_end":147,"column_start":16,"column_end":24,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":16,"highlight_end":24}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooPrj` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:147:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m147\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj: IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_UNKNOWN` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3863,"byte_end":3880,"line_start":150,"line_end":150,"column_start":28,"column_end":45,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,","highlight_start":28,"highlight_end":45}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_UNKNOWN` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:150:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m150\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4552,"byte_end":4566,"line_start":191,"line_end":191,"column_start":17,"column_end":31,"is_primary":true,"text":[{"text":"\t\tif res_err == IGLOO_ERR_NONE","highlight_start":17,"highlight_end":31}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:191:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m191\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err == IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.","code":{"code":"deprecated","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/env_info.rs","byte_start":423,"byte_end":441,"line_start":24,"line_end":24,"column_start":8,"column_end":26,"is_primary":true,"text":[{"text":"\t\t\thd: std::env::home_dir().unwrap(),","highlight_start":8,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(deprecated)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/env_info.rs:24:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m24\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m hd: std::env::home_dir().unwrap(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(deprecated)]` on by default\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":327,"byte_end":348,"line_start":30,"line_end":30,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum IglooErrType","highlight_start":1,"highlight_end":22}],"label":"variant or associated item `IGLOO_ERR_NONE` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":4325,"byte_end":4339,"line_start":170,"line_end":170,"column_start":34,"column_end":48,"is_primary":true,"text":[{"text":"\t\t\t\t\tif res_err != IglooErrType::IGLOO_ERR_NONE","highlight_start":34,"highlight_end":48}],"label":"variant or associated item not found in `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:170:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m30\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_ERR_NONE` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m170\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err != IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooErrType`\u001b[0m\n\n"} +{"message":"aborting due to 10 previous errors; 1 warning emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 10 previous errors; 1 warning emitted\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0412, E0425, E0433, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0412, E0425, E0433, E0599.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/target/release/.fingerprint/quote-eafe4baa7c1bf060/invoked.timestamp b/target/debug/.fingerprint/igloo_core-8714d731dfaed1a5/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/quote-eafe4baa7c1bf060/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-8714d731dfaed1a5/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-8714d731dfaed1a5/output-test-lib-igloo_core b/target/debug/.fingerprint/igloo_core-8714d731dfaed1a5/output-test-lib-igloo_core new file mode 100644 index 0000000..1b51789 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-8714d731dfaed1a5/output-test-lib-igloo_core @@ -0,0 +1,18 @@ +{"message":"expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found keyword `self`","code":null,"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2672,"byte_end":2672,"line_start":99,"line_end":99,"column_start":8,"column_end":8,"is_primary":false,"text":[{"text":"\t\tget_m","highlight_start":8,"highlight_end":8}],"label":"expected one of 8 possible tokens","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":2675,"byte_end":2679,"line_start":100,"line_end":100,"column_start":3,"column_end":7,"is_primary":true,"text":[{"text":"\t\tself.target_manifest.merge(","highlight_start":3,"highlight_end":7}],"label":"unexpected token","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found keyword `self`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:100:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m99\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m get_m\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mexpected one of 8 possible tokens\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m self.target_manifest.merge(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9munexpected token\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `clap`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1480,"byte_end":1484,"line_start":63,"line_end":63,"column_start":12,"column_end":16,"is_primary":true,"text":[{"text":"\tcli_conf: clap::ArgMatches,","highlight_start":12,"highlight_end":16}],"label":"use of undeclared type or module `clap`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `clap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:63:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m63\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m cli_conf: clap::ArgMatches,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `clap`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1539,"byte_end":1545,"line_start":65,"line_end":65,"column_start":17,"column_end":23,"is_primary":true,"text":[{"text":"\tmake_manifest: config::Config,","highlight_start":17,"highlight_end":23}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:65:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m65\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m make_manifest: config::Config,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1573,"byte_end":1579,"line_start":66,"line_end":66,"column_start":19,"column_end":25,"is_primary":true,"text":[{"text":"\ttarget_manifest: config::Config,","highlight_start":19,"highlight_end":25}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:66:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m66\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_manifest: config::Config,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2069,"byte_end":2075,"line_start":82,"line_end":82,"column_start":19,"column_end":25,"is_primary":true,"text":[{"text":"\t\t\tmake_manifest: config::Config::new(),","highlight_start":19,"highlight_end":25}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:82:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m82\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m make_manifest: config::Config::new(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `config`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2112,"byte_end":2118,"line_start":83,"line_end":83,"column_start":21,"column_end":27,"is_primary":true,"text":[{"text":"\t\t\ttarget_manifest: config::Config::new(),","highlight_start":21,"highlight_end":27}],"label":"use of undeclared type or module `config`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:83:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m83\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m target_manifest: config::Config::new(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `config`\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooAction`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4260,"byte_end":4271,"line_start":168,"line_end":168,"column_start":20,"column_end":31,"is_primary":true,"text":[{"text":"\t\t\t\t\tlet res_err = IglooAction::new(","highlight_start":20,"highlight_end":31}],"label":"use of undeclared type or module `IglooAction`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooAction`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:168:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m168\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let res_err = IglooAction::new(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooAction`\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2590,"byte_end":2604,"line_start":96,"line_end":96,"column_start":23,"column_end":37,"is_primary":true,"text":[{"text":"\t\tlet mut res_error = IGLOO_ERR_NONE;","highlight_start":23,"highlight_end":37}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:96:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m96\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_error = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_NULL` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2627,"byte_end":2637,"line_start":97,"line_end":97,"column_start":22,"column_end":32,"is_primary":true,"text":[{"text":"\t\tlet mut res_type = IGLOO_NULL;","highlight_start":22,"highlight_end":32}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_NULL` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:97:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m97\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_type = IGLOO_NULL;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3783,"byte_end":3797,"line_start":146,"line_end":146,"column_start":21,"column_end":35,"is_primary":true,"text":[{"text":"\t\tlet mut res_err = IGLOO_ERR_NONE;","highlight_start":21,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:146:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m146\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `IglooPrj` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3814,"byte_end":3822,"line_start":147,"line_end":147,"column_start":16,"column_end":24,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":16,"highlight_end":24}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooPrj` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:147:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m147\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj: IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_UNKNOWN` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3880,"byte_end":3897,"line_start":150,"line_end":150,"column_start":28,"column_end":45,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,","highlight_start":28,"highlight_end":45}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_UNKNOWN` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:150:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m150\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4569,"byte_end":4583,"line_start":191,"line_end":191,"column_start":17,"column_end":31,"is_primary":true,"text":[{"text":"\t\tif res_err == IGLOO_ERR_NONE","highlight_start":17,"highlight_end":31}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:191:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m191\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err == IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.","code":{"code":"deprecated","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/env_info.rs","byte_start":423,"byte_end":441,"line_start":24,"line_end":24,"column_start":8,"column_end":26,"is_primary":true,"text":[{"text":"\t\t\thd: std::env::home_dir().unwrap(),","highlight_start":8,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(deprecated)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/env_info.rs:24:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m24\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m hd: std::env::home_dir().unwrap(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(deprecated)]` on by default\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":344,"byte_end":365,"line_start":30,"line_end":30,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum IglooErrType","highlight_start":1,"highlight_end":22}],"label":"variant or associated item `IGLOO_ERR_NONE` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":4342,"byte_end":4356,"line_start":170,"line_end":170,"column_start":34,"column_end":48,"is_primary":true,"text":[{"text":"\t\t\t\t\tif res_err != IglooErrType::IGLOO_ERR_NONE","highlight_start":34,"highlight_end":48}],"label":"variant or associated item not found in `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:170:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m30\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_ERR_NONE` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m170\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err != IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooErrType`\u001b[0m\n\n"} +{"message":"aborting due to 14 previous errors; 1 warning emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 14 previous errors; 1 warning emitted\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0412, E0425, E0433, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0412, E0425, E0433, E0599.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/dep-test-lib-igloo_core b/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/dep-test-lib-igloo_core new file mode 100644 index 0000000..c381219 Binary files /dev/null and b/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/dep-test-lib-igloo_core differ diff --git a/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/invoked.timestamp b/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/regex-a01d99d1d1a9d2f8/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-9b16be702b6646fa/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/output-test-lib-igloo_core b/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/output-test-lib-igloo_core new file mode 100644 index 0000000..ec77826 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/output-test-lib-igloo_core @@ -0,0 +1,37 @@ +{"message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":"unreachable pattern","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":false,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":"matches any value","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unreachable_patterns)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:134:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m130\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_FLASH =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-----------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mmatches any value\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m134\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_RUN =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33munreachable pattern\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unreachable_patterns)]` on by default\u001b[0m\n\n"} +{"message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3068,"byte_end":3069,"line_start":138,"line_end":138,"column_start":4,"column_end":5,"is_primary":true,"text":[{"text":"\t\t\t_ => println!(\"Unhandled case: {:?}\", inst_type),","highlight_start":4,"highlight_end":5}],"label":"unreachable pattern","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":false,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":"matches any value","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:138:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m130\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_FLASH =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-----------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mmatches any value\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m138\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m _ => println!(\"Unhandled case: {:?}\", inst_type),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33munreachable pattern\u001b[0m\n\n"} +{"message":"value assigned to `res` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":1649,"byte_end":1656,"line_start":62,"line_end":62,"column_start":7,"column_end":14,"is_primary":true,"text":[{"text":"\t\tlet mut res: IglooInstType = Null;","highlight_start":7,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_assignments)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: value assigned to `res` is never read\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:62:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m62\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res: IglooInstType = Null;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_assignments)]` on by default\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: maybe it is overwritten before being read?\u001b[0m\n\n"} +{"message":"unused variable: `prj`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2532,"byte_end":2539,"line_start":104,"line_end":104,"column_start":7,"column_end":14,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":7,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2532,"byte_end":2539,"line_start":104,"line_end":104,"column_start":7,"column_end":14,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":7,"highlight_end":14}],"label":null,"suggested_replacement":"_prj","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `prj`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:104:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m104\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj: IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_prj`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"} +{"message":"unused variable: `IGLOO_FLASH`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":"_IGLOO_FLASH","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `IGLOO_FLASH`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:130:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m130\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_FLASH =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_IGLOO_FLASH`\u001b[0m\n\n"} +{"message":"unused variable: `IGLOO_RUN`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":"_IGLOO_RUN","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `IGLOO_RUN`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:134:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m134\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_RUN =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_IGLOO_RUN`\u001b[0m\n\n"} +{"message":"unused variable: `prj_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":119,"byte_end":127,"line_start":7,"line_end":7,"column_start":12,"column_end":20,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":12,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":119,"byte_end":127,"line_start":7,"line_end":7,"column_start":12,"column_end":20,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":12,"highlight_end":20}],"label":null,"suggested_replacement":"_prj_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `prj_name`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:7:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn run(prj_name: &str, target: &str) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_prj_name`\u001b[0m\n\n"} +{"message":"unused variable: `target`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":135,"byte_end":141,"line_start":7,"line_end":7,"column_start":28,"column_end":34,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":28,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":135,"byte_end":141,"line_start":7,"line_end":7,"column_start":28,"column_end":34,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":28,"highlight_end":34}],"label":null,"suggested_replacement":"_target","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `target`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:7:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn run(prj_name: &str, target: &str) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_target`\u001b[0m\n\n"} +{"message":"value assigned to `res_err` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":300,"byte_end":311,"line_start":16,"line_end":16,"column_start":6,"column_end":17,"is_primary":true,"text":[{"text":"\tlet mut res_err: IglooErrType = ErrNone;","highlight_start":6,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: value assigned to `res_err` is never read\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:16:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err: IglooErrType = ErrNone;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: maybe it is overwritten before being read?\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":767,"byte_end":778,"line_start":33,"line_end":33,"column_start":6,"column_end":17,"is_primary":true,"text":[{"text":"\tlet mut project = IglooPrj::new(inst, prj_name, target);","highlight_start":6,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":767,"byte_end":771,"line_start":33,"line_end":33,"column_start":6,"column_end":10,"is_primary":true,"text":[{"text":"\tlet mut project = IglooPrj::new(inst, prj_name, target);","highlight_start":6,"highlight_end":10}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:33:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m33\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut project = IglooPrj::new(inst, prj_name, target);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3839,"byte_end":3851,"line_start":185,"line_end":185,"column_start":7,"column_end":19,"is_primary":true,"text":[{"text":"\t\tlet mut prj_root = self.project_dir.join(\".igloo\");","highlight_start":7,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3839,"byte_end":3843,"line_start":185,"line_end":185,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut prj_root = self.project_dir.join(\".igloo\");","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:185:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m185\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj_root = self.project_dir.join(\".igloo\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3932,"byte_end":3947,"line_start":188,"line_end":188,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"\t\t\tlet mut target_root = prj_root.join(&(\"target/\".to_owned() + &target.name));","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3932,"byte_end":3936,"line_start":188,"line_end":188,"column_start":8,"column_end":12,"is_primary":true,"text":[{"text":"\t\t\tlet mut target_root = prj_root.join(&(\"target/\".to_owned() + &target.name));","highlight_start":8,"highlight_end":12}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:188:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut target_root = prj_root.join(&(\"target/\".to_owned() + &target.name));\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4191,"byte_end":4206,"line_start":197,"line_end":197,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"\t\t\tlet mut scripts_dir = target_root.join(\"scripts\");","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4191,"byte_end":4195,"line_start":197,"line_end":197,"column_start":8,"column_end":12,"is_primary":true,"text":[{"text":"\t\t\tlet mut scripts_dir = target_root.join(\"scripts\");","highlight_start":8,"highlight_end":12}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:197:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m197\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut scripts_dir = target_root.join(\"scripts\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4400,"byte_end":4421,"line_start":206,"line_end":206,"column_start":8,"column_end":29,"is_primary":true,"text":[{"text":"\t\t\tlet mut gdb_scripts_paths = std::fs::read_dir(","highlight_start":8,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4400,"byte_end":4404,"line_start":206,"line_end":206,"column_start":8,"column_end":12,"is_primary":true,"text":[{"text":"\t\t\tlet mut gdb_scripts_paths = std::fs::read_dir(","highlight_start":8,"highlight_end":12}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:206:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m206\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut gdb_scripts_paths = std::fs::read_dir(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5080,"byte_end":5095,"line_start":234,"line_end":234,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"\t\t\tlet mut prj_esf_dir = self.project_dir.join(\"ESF\");","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5080,"byte_end":5084,"line_start":234,"line_end":234,"column_start":8,"column_end":12,"is_primary":true,"text":[{"text":"\t\t\tlet mut prj_esf_dir = self.project_dir.join(\"ESF\");","highlight_start":8,"highlight_end":12}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:234:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m234\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj_esf_dir = self.project_dir.join(\"ESF\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5548,"byte_end":5555,"line_start":251,"line_end":251,"column_start":7,"column_end":14,"is_primary":true,"text":[{"text":"\t\tlet mut ret: IglooErrType = ErrNone;","highlight_start":7,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5548,"byte_end":5552,"line_start":251,"line_end":251,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut ret: IglooErrType = ErrNone;","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:251:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m251\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut ret: IglooErrType = ErrNone;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":6950,"byte_end":6962,"line_start":302,"line_end":302,"column_start":7,"column_end":19,"is_primary":true,"text":[{"text":"\t\tlet mut prj_root = self.project_dir.join(\".igloo/target\");","highlight_start":7,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":6950,"byte_end":6954,"line_start":302,"line_end":302,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut prj_root = self.project_dir.join(\".igloo/target\");","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:302:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m302\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj_root = self.project_dir.join(\".igloo/target\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":7011,"byte_end":7026,"line_start":303,"line_end":303,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"\t\tlet mut target_root = prj_root.join(&target.name);","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":7011,"byte_end":7015,"line_start":303,"line_end":303,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut target_root = prj_root.join(&target.name);","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:303:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m303\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut target_root = prj_root.join(&target.name);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22058,"byte_end":22069,"line_start":1035,"line_end":1035,"column_start":7,"column_end":18,"is_primary":true,"text":[{"text":"\t\tlet mut inc_dir = self.project_dir.join(\"inc\");","highlight_start":7,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22058,"byte_end":22062,"line_start":1035,"line_end":1035,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut inc_dir = self.project_dir.join(\"inc\");","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1035:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1035\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut inc_dir = self.project_dir.join(\"inc\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22955,"byte_end":22966,"line_start":1075,"line_end":1075,"column_start":7,"column_end":18,"is_primary":true,"text":[{"text":"\t\tlet mut src_dir = self.project_dir.join(\"src\");","highlight_start":7,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":22955,"byte_end":22959,"line_start":1075,"line_end":1075,"column_start":7,"column_end":11,"is_primary":true,"text":[{"text":"\t\tlet mut src_dir = self.project_dir.join(\"src\");","highlight_start":7,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:1075:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1075\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut src_dir = self.project_dir.join(\"src\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"message":"function is never used: `run`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_action.rs","byte_start":115,"byte_end":118,"line_start":7,"line_end":7,"column_start":8,"column_end":11,"is_primary":true,"text":[{"text":"pub fn run(prj_name: &str, target: &str) -> IglooErrType","highlight_start":8,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function is never used: `run`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_action.rs:7:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn run(prj_name: &str, target: &str) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"} +{"message":"associated function is never used: `default`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":631,"byte_end":638,"line_start":31,"line_end":31,"column_start":9,"column_end":16,"is_primary":true,"text":[{"text":"\tpub fn default() -> IglooPrj","highlight_start":9,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `default`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:31:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m31\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn default() -> IglooPrj\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `debugManifests`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3424,"byte_end":3438,"line_start":165,"line_end":165,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":"\tpub fn debugManifests(&self)","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `debugManifests`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:165:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m165\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn debugManifests(&self)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `default`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":440,"byte_end":447,"line_start":19,"line_end":19,"column_start":9,"column_end":16,"is_primary":true,"text":[{"text":"\tpub fn default() -> IglooTarget","highlight_start":9,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `default`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:19:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn default() -> IglooTarget\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `generate`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":2373,"byte_end":2381,"line_start":100,"line_end":100,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":"\tpub fn generate(&self) -> IglooErrType","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `generate`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:100:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m100\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn generate(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `populate`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":2480,"byte_end":2488,"line_start":107,"line_end":107,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":"\tpub fn populate(&self) -> IglooErrType","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `populate`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:107:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m107\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn populate(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} +{"message":"associated function is never used: `generate_makefile`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_target.rs","byte_start":2641,"byte_end":2658,"line_start":114,"line_end":114,"column_start":9,"column_end":26,"is_primary":true,"text":[{"text":"\tpub fn generate_makefile(&self) -> IglooErrType","highlight_start":9,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: associated function is never used: `generate_makefile`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_target.rs:114:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m114\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn generate_makefile(&self) -> IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"field is never read: `env_info`","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":598,"byte_end":620,"line_start":30,"line_end":30,"column_start":2,"column_end":24,"is_primary":true,"text":[{"text":"\tenv_info: IglooEnvInfo,","highlight_start":2,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: field is never read: `env_info`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:30:2\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m30\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m env_info: IglooEnvInfo,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"variable `IGLOO_FLASH` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_snake_case)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3012,"byte_end":3023,"line_start":130,"line_end":130,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_FLASH =>","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":"igloo_flash","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable `IGLOO_FLASH` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:130:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m130\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_FLASH =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `igloo_flash`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(non_snake_case)]` on by default\u001b[0m\n\n"} +{"message":"variable `IGLOO_RUN` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":3041,"byte_end":3050,"line_start":134,"line_end":134,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_RUN =>","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":"igloo_run","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable `IGLOO_RUN` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:134:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m134\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_RUN =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `igloo_run`\u001b[0m\n\n"} +{"message":"variable `nameIn` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":811,"byte_end":817,"line_start":41,"line_end":41,"column_start":27,"column_end":33,"is_primary":true,"text":[{"text":"\tpub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)","highlight_start":27,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":811,"byte_end":817,"line_start":41,"line_end":41,"column_start":27,"column_end":33,"is_primary":true,"text":[{"text":"\tpub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)","highlight_start":27,"highlight_end":33}],"label":null,"suggested_replacement":"name_in","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable `nameIn` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:41:27\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m41\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `name_in`\u001b[0m\n\n"} +{"message":"variable `targetIn` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":825,"byte_end":833,"line_start":41,"line_end":41,"column_start":41,"column_end":49,"is_primary":true,"text":[{"text":"\tpub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)","highlight_start":41,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":825,"byte_end":833,"line_start":41,"line_end":41,"column_start":41,"column_end":49,"is_primary":true,"text":[{"text":"\tpub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)","highlight_start":41,"highlight_end":49}],"label":null,"suggested_replacement":"target_in","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable `targetIn` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:41:41\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m41\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn new(inst: &Igloo, nameIn: &str, targetIn: &str)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `target_in`\u001b[0m\n\n"} +{"message":"method `debugManifests` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3424,"byte_end":3438,"line_start":165,"line_end":165,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":"\tpub fn debugManifests(&self)","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":3424,"byte_end":3438,"line_start":165,"line_end":165,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":"\tpub fn debugManifests(&self)","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":"debug_manifests","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: method `debugManifests` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:165:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m165\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m pub fn debugManifests(&self)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: convert the identifier to snake case: `debug_manifests`\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":4978,"byte_end":5065,"line_start":229,"line_end":230,"column_start":5,"column_end":60,"is_primary":true,"text":[{"text":"\t\t\t\tstd::os::unix::fs::symlink(","highlight_start":5,"highlight_end":32},{"text":"\t\t\t\t\t&file, &scripts_dir.join(&file.file_name().unwrap()));","highlight_start":1,"highlight_end":60}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_must_use)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:229:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m229\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m std::os::unix::fs::symlink(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m_________________^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m230\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m &file, &scripts_dir.join(&file.file_name().unwrap()));\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m|__________________________________________________________________________^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_must_use)]` on by default\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/igloo_project.rs","byte_start":5797,"byte_end":5853,"line_start":258,"line_end":258,"column_start":4,"column_end":60,"is_primary":true,"text":[{"text":"\t\t\tstd::fs::remove_file(openocd_cfg.with_extension(\"cfg\"));","highlight_start":4,"highlight_end":60}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:258:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m258\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m std::fs::remove_file(openocd_cfg.with_extension(\"cfg\"));\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"/home/penguin/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/macros/mod.rs","byte_start":15427,"byte_end":15476,"line_start":461,"line_end":461,"column_start":9,"column_end":58,"is_primary":true,"text":[{"text":" $dst.write_fmt($crate::format_args_nl!($($arg)*))","highlight_start":9,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"igloo_core/src/igloo_project.rs","byte_start":6603,"byte_end":6655,"line_start":287,"line_end":287,"column_start":3,"column_end":55,"is_primary":false,"text":[{"text":"\t\twriteln!(ocfg_file, \"set CHIPNAME {}\", target.name);","highlight_start":3,"highlight_end":55}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"writeln!","def_site_span":{"file_name":"/home/penguin/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/macros/mod.rs","byte_start":15239,"byte_end":15485,"line_start":453,"line_end":463,"column_start":1,"column_end":2,"is_primary":false,"text":[{"text":"macro_rules! writeln {","highlight_start":1,"highlight_end":23},{"text":" ($dst:expr) => (","highlight_start":1,"highlight_end":21},{"text":" $crate::write!($dst, \"\\n\")","highlight_start":1,"highlight_end":35},{"text":" );","highlight_start":1,"highlight_end":7},{"text":" ($dst:expr,) => (","highlight_start":1,"highlight_end":22},{"text":" $crate::writeln!($dst)","highlight_start":1,"highlight_end":31},{"text":" );","highlight_start":1,"highlight_end":7},{"text":" ($dst:expr, $($arg:tt)*) => (","highlight_start":1,"highlight_end":34},{"text":" $dst.write_fmt($crate::format_args_nl!($($arg)*))","highlight_start":1,"highlight_end":58},{"text":" );","highlight_start":1,"highlight_end":7},{"text":"}","highlight_start":1,"highlight_end":2}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/igloo_project.rs:287:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m287\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m writeln!(ocfg_file, \"set CHIPNAME {}\", target.name);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)\u001b[0m\n\n"} +{"message":"36 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 36 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/test-lib-igloo_core b/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/test-lib-igloo_core new file mode 100644 index 0000000..9b89686 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/test-lib-igloo_core @@ -0,0 +1 @@ +a3306bb830bf7d16 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/test-lib-igloo_core.json b/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/test-lib-igloo_core.json new file mode 100644 index 0000000..32b047e --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-9b16be702b6646fa/test-lib-igloo_core.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":14479087594405346722,"profile":10655494245791646288,"path":5733077946338526592,"deps":[[120200842360645998,"igloo_base",false,2546000521198750159],[300900241173941925,"zmq",false,12754612217412315116],[1122423871155493656,"config",false,5716277277819123494],[6648631751136337537,"igloo_make",false,5440744294530278495],[9492746702086754917,"igloo_manifest",false,8620851192523557116],[12003688265259193345,"clap",false,17337329443654176458],[16739089134865246075,"igloo_cli",false,11127943518352648208]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_core-9b16be702b6646fa/dep-test-lib-igloo_core"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-50d37af1de76b871/invoked.timestamp b/target/debug/.fingerprint/igloo_core-ec0c3849bc9b6e69/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/regex-syntax-50d37af1de76b871/invoked.timestamp rename to target/debug/.fingerprint/igloo_core-ec0c3849bc9b6e69/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_core-ec0c3849bc9b6e69/output-lib-igloo_core b/target/debug/.fingerprint/igloo_core-ec0c3849bc9b6e69/output-lib-igloo_core new file mode 100644 index 0000000..3c93141 --- /dev/null +++ b/target/debug/.fingerprint/igloo_core-ec0c3849bc9b6e69/output-lib-igloo_core @@ -0,0 +1,17 @@ +{"message":"failed to resolve: use of undeclared type or module `IglooAction`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4673,"byte_end":4684,"line_start":185,"line_end":185,"column_start":20,"column_end":31,"is_primary":true,"text":[{"text":"\t\t\t\t\tlet res_err = IglooAction::new(","highlight_start":20,"highlight_end":31}],"label":"use of undeclared type or module `IglooAction`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooAction`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:185:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m185\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let res_err = IglooAction::new(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooAction`\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2843,"byte_end":2857,"line_start":108,"line_end":108,"column_start":23,"column_end":37,"is_primary":true,"text":[{"text":"\t\tlet mut res_error = IGLOO_ERR_NONE;","highlight_start":23,"highlight_end":37}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:108:23\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m108\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_error = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_NULL` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":2880,"byte_end":2890,"line_start":109,"line_end":109,"column_start":22,"column_end":32,"is_primary":true,"text":[{"text":"\t\tlet mut res_type = IGLOO_NULL;","highlight_start":22,"highlight_end":32}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_NULL` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:109:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m109\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_type = IGLOO_NULL;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4196,"byte_end":4210,"line_start":163,"line_end":163,"column_start":21,"column_end":35,"is_primary":true,"text":[{"text":"\t\tlet mut res_err = IGLOO_ERR_NONE;","highlight_start":21,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:163:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m163\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut res_err = IGLOO_ERR_NONE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find type `IglooPrj` in this scope","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4227,"byte_end":4235,"line_start":164,"line_end":164,"column_start":16,"column_end":24,"is_primary":true,"text":[{"text":"\t\tlet mut prj: IglooPrj;","highlight_start":16,"highlight_end":24}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `IglooPrj` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:164:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m164\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let mut prj: IglooPrj;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_UNKNOWN` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4293,"byte_end":4310,"line_start":167,"line_end":167,"column_start":28,"column_end":45,"is_primary":true,"text":[{"text":"\t\t\tIGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,","highlight_start":28,"highlight_end":45}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_UNKNOWN` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:167:28\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m167\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IGLOO_NULL => res_err = IGLOO_ERR_UNKNOWN,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"cannot find value `IGLOO_ERR_NONE` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":4982,"byte_end":4996,"line_start":208,"line_end":208,"column_start":17,"column_end":31,"is_primary":true,"text":[{"text":"\t\tif res_err == IGLOO_ERR_NONE","highlight_start":17,"highlight_end":31}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m: cannot find value `IGLOO_ERR_NONE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:208:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m208\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err == IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} +{"message":"use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.","code":{"code":"deprecated","explanation":null},"level":"warning","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":5195,"byte_end":5213,"line_start":226,"line_end":226,"column_start":8,"column_end":26,"is_primary":true,"text":[{"text":"\t\t\thd: std::env::home_dir().unwrap(),","highlight_start":8,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(deprecated)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead.\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:226:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m226\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m hd: std::env::home_dir().unwrap(),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(deprecated)]` on by default\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_NEW` found for enum `IglooInstType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":194,"byte_end":216,"line_start":16,"line_end":16,"column_start":1,"column_end":23,"is_primary":false,"text":[{"text":"pub enum IglooInstType","highlight_start":1,"highlight_end":23}],"label":"variant or associated item `IGLOO_NEW` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":3394,"byte_end":3403,"line_start":128,"line_end":128,"column_start":31,"column_end":40,"is_primary":true,"text":[{"text":"\t\t\t\tres_type = IglooInstType::IGLOO_NEW;","highlight_start":31,"highlight_end":40}],"label":"variant or associated item not found in `IglooInstType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_NEW` found for enum `IglooInstType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:128:31\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooInstType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_NEW` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m128\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m res_type = IglooInstType::IGLOO_NEW;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooInstType`\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_RUN` found for enum `IglooInstType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":194,"byte_end":216,"line_start":16,"line_end":16,"column_start":1,"column_end":23,"is_primary":false,"text":[{"text":"pub enum IglooInstType","highlight_start":1,"highlight_end":23}],"label":"variant or associated item `IGLOO_RUN` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":3502,"byte_end":3511,"line_start":133,"line_end":133,"column_start":31,"column_end":40,"is_primary":true,"text":[{"text":"\t\t\t\tres_type = IglooInstType::IGLOO_RUN;","highlight_start":31,"highlight_end":40}],"label":"variant or associated item not found in `IglooInstType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_RUN` found for enum `IglooInstType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:133:31\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooInstType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_RUN` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m133\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m res_type = IglooInstType::IGLOO_RUN;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooInstType`\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_FLASH` found for enum `IglooInstType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":194,"byte_end":216,"line_start":16,"line_end":16,"column_start":1,"column_end":23,"is_primary":false,"text":[{"text":"pub enum IglooInstType","highlight_start":1,"highlight_end":23}],"label":"variant or associated item `IGLOO_FLASH` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":3614,"byte_end":3625,"line_start":138,"line_end":138,"column_start":31,"column_end":42,"is_primary":true,"text":[{"text":"\t\t\t\tres_type = IglooInstType::IGLOO_FLASH;","highlight_start":31,"highlight_end":42}],"label":"variant or associated item not found in `IglooInstType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_FLASH` found for enum `IglooInstType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:138:31\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooInstType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_FLASH` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m138\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m res_type = IglooInstType::IGLOO_FLASH;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooInstType`\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_ERASE` found for enum `IglooInstType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":194,"byte_end":216,"line_start":16,"line_end":16,"column_start":1,"column_end":23,"is_primary":false,"text":[{"text":"pub enum IglooInstType","highlight_start":1,"highlight_end":23}],"label":"variant or associated item `IGLOO_ERASE` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":3728,"byte_end":3739,"line_start":143,"line_end":143,"column_start":31,"column_end":42,"is_primary":true,"text":[{"text":"\t\t\t\tres_type = IglooInstType::IGLOO_ERASE;","highlight_start":31,"highlight_end":42}],"label":"variant or associated item not found in `IglooInstType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_ERASE` found for enum `IglooInstType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:143:31\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooInstType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_ERASE` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m143\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m res_type = IglooInstType::IGLOO_ERASE;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooInstType`\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_NULL` found for enum `IglooInstType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":194,"byte_end":216,"line_start":16,"line_end":16,"column_start":1,"column_end":23,"is_primary":false,"text":[{"text":"pub enum IglooInstType","highlight_start":1,"highlight_end":23}],"label":"variant or associated item `IGLOO_NULL` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":3833,"byte_end":3843,"line_start":148,"line_end":148,"column_start":33,"column_end":43,"is_primary":true,"text":[{"text":"\t\tif res_type != IglooInstType::IGLOO_NULL","highlight_start":33,"highlight_end":43}],"label":"variant or associated item not found in `IglooInstType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_NULL` found for enum `IglooInstType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:148:33\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooInstType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_NULL` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m148\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_type != IglooInstType::IGLOO_NULL\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooInstType`\u001b[0m\n\n"} +{"message":"no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"igloo_core/src/lib.rs","byte_start":353,"byte_end":374,"line_start":30,"line_end":30,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum IglooErrType","highlight_start":1,"highlight_end":22}],"label":"variant or associated item `IGLOO_ERR_NONE` not found here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_core/src/lib.rs","byte_start":4755,"byte_end":4769,"line_start":187,"line_end":187,"column_start":34,"column_end":48,"is_primary":true,"text":[{"text":"\t\t\t\t\tif res_err != IglooErrType::IGLOO_ERR_NONE","highlight_start":34,"highlight_end":48}],"label":"variant or associated item not found in `IglooErrType`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0599]\u001b[0m\u001b[0m\u001b[1m: no variant or associated item named `IGLOO_ERR_NONE` found for enum `IglooErrType` in the current scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_core/src/lib.rs:187:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m30\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub enum IglooErrType\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mvariant or associated item `IGLOO_ERR_NONE` not found here\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m187\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m if res_err != IglooErrType::IGLOO_ERR_NONE\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mvariant or associated item not found in `IglooErrType`\u001b[0m\n\n"} +{"message":"aborting due to 13 previous errors; 1 warning emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 13 previous errors; 1 warning emitted\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0412, E0425, E0433, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0412, E0425, E0433, E0599.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/dep-lib-igloo_make b/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/dep-lib-igloo_make new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/dep-lib-igloo_make differ diff --git a/target/release/.fingerprint/rust-ini-26103a64a58d7c80/invoked.timestamp b/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/rust-ini-26103a64a58d7c80/invoked.timestamp rename to target/debug/.fingerprint/igloo_make-0cbf3151236bd682/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/lib-igloo_make b/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/lib-igloo_make new file mode 100644 index 0000000..928de85 --- /dev/null +++ b/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/lib-igloo_make @@ -0,0 +1 @@ +5fe4350d1c68814b \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/lib-igloo_make.json b/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/lib-igloo_make.json new file mode 100644 index 0000000..d3d9657 --- /dev/null +++ b/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/lib-igloo_make.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":18302147326426935910,"profile":18074012566298724745,"path":14587852588926825575,"deps":[[120200842360645998,"igloo_base",false,2546000521198750159]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_make-0cbf3151236bd682/dep-lib-igloo_make"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/output-lib-igloo_make b/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/output-lib-igloo_make new file mode 100644 index 0000000..9baf84f --- /dev/null +++ b/target/debug/.fingerprint/igloo_make-0cbf3151236bd682/output-lib-igloo_make @@ -0,0 +1,2 @@ +{"message":"unused import: `igloo_base`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_make/src/lib.rs","byte_start":100,"byte_end":110,"line_start":9,"line_end":9,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":"use igloo_base;","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"igloo_make/src/lib.rs","byte_start":96,"byte_end":111,"line_start":9,"line_end":9,"column_start":1,"column_end":16,"is_primary":true,"text":[{"text":"use igloo_base;","highlight_start":1,"highlight_end":16}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `igloo_base`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_make/src/lib.rs:9:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m9\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} +{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/ryu-947076e03a8bfb36/invoked.timestamp b/target/debug/.fingerprint/igloo_make-239f78effa14aa21/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/ryu-947076e03a8bfb36/invoked.timestamp rename to target/debug/.fingerprint/igloo_make-239f78effa14aa21/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_make-239f78effa14aa21/output-lib-igloo_make b/target/debug/.fingerprint/igloo_make-239f78effa14aa21/output-lib-igloo_make new file mode 100644 index 0000000..21604de --- /dev/null +++ b/target/debug/.fingerprint/igloo_make-239f78effa14aa21/output-lib-igloo_make @@ -0,0 +1,3 @@ +{"message":"unresolved import `igloo_core`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_make/src/lib.rs","byte_start":100,"byte_end":110,"line_start":9,"line_end":9,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":"use igloo_core;","highlight_start":5,"highlight_end":15}],"label":"no `igloo_core` external crate","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `igloo_core`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_make/src/lib.rs:9:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m9\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_core;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `igloo_core` external crate\u001b[0m\n\n"} +{"message":"aborting due to previous error","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to previous error\u001b[0m\n\n"} +{"message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/dep-test-lib-igloo_make b/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/dep-test-lib-igloo_make new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/dep-test-lib-igloo_make differ diff --git a/target/release/.fingerprint/ryu-f51c263ba48db9fd/invoked.timestamp b/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/ryu-f51c263ba48db9fd/invoked.timestamp rename to target/debug/.fingerprint/igloo_make-a466ea6e7942b350/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/output-test-lib-igloo_make b/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/output-test-lib-igloo_make new file mode 100644 index 0000000..9baf84f --- /dev/null +++ b/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/output-test-lib-igloo_make @@ -0,0 +1,2 @@ +{"message":"unused import: `igloo_base`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"igloo_make/src/lib.rs","byte_start":100,"byte_end":110,"line_start":9,"line_end":9,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":"use igloo_base;","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"igloo_make/src/lib.rs","byte_start":96,"byte_end":111,"line_start":9,"line_end":9,"column_start":1,"column_end":16,"is_primary":true,"text":[{"text":"use igloo_base;","highlight_start":1,"highlight_end":16}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `igloo_base`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_make/src/lib.rs:9:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m9\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse igloo_base;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} +{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/test-lib-igloo_make b/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/test-lib-igloo_make new file mode 100644 index 0000000..b24ad3b --- /dev/null +++ b/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/test-lib-igloo_make @@ -0,0 +1 @@ +702ec21b9841e69e \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/test-lib-igloo_make.json b/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/test-lib-igloo_make.json new file mode 100644 index 0000000..ef6abc8 --- /dev/null +++ b/target/debug/.fingerprint/igloo_make-a466ea6e7942b350/test-lib-igloo_make.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":18302147326426935910,"profile":10655494245791646288,"path":14587852588926825575,"deps":[[120200842360645998,"igloo_base",false,2546000521198750159]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_make-a466ea6e7942b350/dep-test-lib-igloo_make"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/dep-lib-igloo_make b/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/dep-lib-igloo_make new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/dep-lib-igloo_make differ diff --git a/target/release/.fingerprint/serde-7291fec13c047b66/invoked.timestamp b/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/serde-7291fec13c047b66/invoked.timestamp rename to target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/lib-igloo_make b/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/lib-igloo_make new file mode 100644 index 0000000..aaf9e6b --- /dev/null +++ b/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/lib-igloo_make @@ -0,0 +1 @@ +9210a2c67102c4e7 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/lib-igloo_make.json b/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/lib-igloo_make.json new file mode 100644 index 0000000..aa0ffea --- /dev/null +++ b/target/debug/.fingerprint/igloo_make-dd7b268c3cb7b045/lib-igloo_make.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":18302147326426935910,"profile":18074012566298724745,"path":14587852588926825575,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_make-dd7b268c3cb7b045/dep-lib-igloo_make"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/dep-test-lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/dep-test-lib-igloo_manifest new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/dep-test-lib-igloo_manifest differ diff --git a/target/release/.fingerprint/serde-8257586245dd2ff1/invoked.timestamp b/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/serde-8257586245dd2ff1/invoked.timestamp rename to target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/test-lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/test-lib-igloo_manifest new file mode 100644 index 0000000..9e4e572 --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/test-lib-igloo_manifest @@ -0,0 +1 @@ +4933d8df6b12ff8c \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/test-lib-igloo_manifest.json b/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/test-lib-igloo_manifest.json new file mode 100644 index 0000000..279aeb3 --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-453ed4ed681afba2/test-lib-igloo_manifest.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7705133129740223161,"profile":10655494245791646288,"path":613830125440917939,"deps":[[120200842360645998,"igloo_base",false,2546000521198750159],[1122423871155493656,"config",false,5716277277819123494]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_manifest-453ed4ed681afba2/dep-test-lib-igloo_manifest"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-fcd1a60d64ffce08/invoked.timestamp b/target/debug/.fingerprint/igloo_manifest-5a9f24e596f26acb/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/serde-fcd1a60d64ffce08/invoked.timestamp rename to target/debug/.fingerprint/igloo_manifest-5a9f24e596f26acb/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_manifest-5a9f24e596f26acb/output-lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-5a9f24e596f26acb/output-lib-igloo_manifest new file mode 100644 index 0000000..c473026 --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-5a9f24e596f26acb/output-lib-igloo_manifest @@ -0,0 +1,8 @@ +{"message":"unresolved import `crate::Config`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":26,"byte_end":39,"line_start":3,"line_end":3,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":"use crate::Config;","highlight_start":5,"highlight_end":18}],"label":"no `Config` in the root","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"a similar name exists in the module","code":null,"level":"help","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":33,"byte_end":39,"line_start":3,"line_end":3,"column_start":12,"column_end":18,"is_primary":true,"text":[{"text":"use crate::Config;","highlight_start":12,"highlight_end":18}],"label":null,"suggested_replacement":"config","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::Config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::Config;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m------\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: a similar name exists in the module (notice the capitalization): `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `Config` in the root\u001b[0m\n\n"} +{"message":"unresolved import `crate::igloo_core`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":52,"byte_end":62,"line_start":4,"line_end":4,"column_start":12,"column_end":22,"is_primary":true,"text":[{"text":"use crate::igloo_core::IglooErrType;","highlight_start":12,"highlight_end":22}],"label":"maybe a missing crate `igloo_core`?","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::igloo_core`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:4:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_core::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmaybe a missing crate `igloo_core`?\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooEnvInfo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":320,"byte_end":332,"line_start":17,"line_end":17,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooEnvInfo`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooEnvInfo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:17:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooEnvInfo`\u001b[0m\n\n"} +{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code example:\n\n```compile_fail,E0308\nlet x: i32 = \"I am not a number!\";\n// ~~~ ~~~~~~~~~~~~~~~~~~~~\n// | |\n// | initializing expression;\n// | compiler infers type `&str`\n// |\n// type `i32` assigned to variable `x`\n```\n\nThis error occurs when the compiler is unable to infer the concrete type of a\nvariable. It can occur in several cases, the most common being a mismatch\nbetween two types: the type the author explicitly assigned, and the type the\ncompiler inferred.\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":414,"byte_end":419,"line_start":21,"line_end":21,"column_start":3,"column_end":8,"is_primary":true,"text":[{"text":"\t\tOk(v) => man.merge(v),","highlight_start":3,"highlight_end":8}],"label":"expected struct `config::File`, found enum `std::result::Result`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_manifest/src/lib.rs","byte_start":293,"byte_end":408,"line_start":16,"line_end":19,"column_start":8,"column_end":14,"is_primary":false,"text":[{"text":"\tmatch config::File::with_name(","highlight_start":8,"highlight_end":32},{"text":"\t\tIglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")","highlight_start":1,"highlight_end":64},{"text":"\t\t\t.to_str()","highlight_start":1,"highlight_end":13},{"text":"\t\t\t.unwrap())","highlight_start":1,"highlight_end":14}],"label":"this expression has type `config::File`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `config::File`\n found enum `std::result::Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0308]\u001b[0m\u001b[0m\u001b[1m: mismatched types\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:21:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m match config::File::with_name(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m___________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .to_str()\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .unwrap())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|______________________-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthis expression has type `config::File`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m {\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m Ok(v) => man.merge(v),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected struct `config::File`, found enum `std::result::Result`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: expected struct `\u001b[0m\u001b[0m\u001b[1mconfig::File\u001b[0m\u001b[0m`\u001b[0m\n\u001b[0m found enum `\u001b[0m\u001b[0m\u001b[1mstd::result::Result<_, _>\u001b[0m\u001b[0m`\u001b[0m\n\n"} +{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code example:\n\n```compile_fail,E0308\nlet x: i32 = \"I am not a number!\";\n// ~~~ ~~~~~~~~~~~~~~~~~~~~\n// | |\n// | initializing expression;\n// | compiler infers type `&str`\n// |\n// type `i32` assigned to variable `x`\n```\n\nThis error occurs when the compiler is unable to infer the concrete type of a\nvariable. It can occur in several cases, the most common being a mismatch\nbetween two types: the type the author explicitly assigned, and the type the\ncompiler inferred.\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":439,"byte_end":445,"line_start":22,"line_end":22,"column_start":3,"column_end":9,"is_primary":true,"text":[{"text":"\t\tErr(e) =>","highlight_start":3,"highlight_end":9}],"label":"expected struct `config::File`, found enum `std::result::Result`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_manifest/src/lib.rs","byte_start":293,"byte_end":408,"line_start":16,"line_end":19,"column_start":8,"column_end":14,"is_primary":false,"text":[{"text":"\tmatch config::File::with_name(","highlight_start":8,"highlight_end":32},{"text":"\t\tIglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")","highlight_start":1,"highlight_end":64},{"text":"\t\t\t.to_str()","highlight_start":1,"highlight_end":13},{"text":"\t\t\t.unwrap())","highlight_start":1,"highlight_end":14}],"label":"this expression has type `config::File`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `config::File`\n found enum `std::result::Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0308]\u001b[0m\u001b[0m\u001b[1m: mismatched types\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:22:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m match config::File::with_name(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m___________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .to_str()\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .unwrap())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|______________________-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthis expression has type `config::File`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m Err(e) =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected struct `config::File`, found enum `std::result::Result`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: expected struct `\u001b[0m\u001b[0m\u001b[1mconfig::File\u001b[0m\u001b[0m`\u001b[0m\n\u001b[0m found enum `\u001b[0m\u001b[0m\u001b[1mstd::result::Result<_, _>\u001b[0m\u001b[0m`\u001b[0m\n\n"} +{"message":"aborting due to 5 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 5 previous errors\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0308, E0432, E0433.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0308, E0432, E0433.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0308`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0308`.\u001b[0m\n"} diff --git a/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/invoked.timestamp b/target/debug/.fingerprint/igloo_manifest-613ec588668bcb21/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/invoked.timestamp rename to target/debug/.fingerprint/igloo_manifest-613ec588668bcb21/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_manifest-613ec588668bcb21/output-test-lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-613ec588668bcb21/output-test-lib-igloo_manifest new file mode 100644 index 0000000..c473026 --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-613ec588668bcb21/output-test-lib-igloo_manifest @@ -0,0 +1,8 @@ +{"message":"unresolved import `crate::Config`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":26,"byte_end":39,"line_start":3,"line_end":3,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":"use crate::Config;","highlight_start":5,"highlight_end":18}],"label":"no `Config` in the root","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"a similar name exists in the module","code":null,"level":"help","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":33,"byte_end":39,"line_start":3,"line_end":3,"column_start":12,"column_end":18,"is_primary":true,"text":[{"text":"use crate::Config;","highlight_start":12,"highlight_end":18}],"label":null,"suggested_replacement":"config","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::Config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::Config;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m------\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: a similar name exists in the module (notice the capitalization): `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `Config` in the root\u001b[0m\n\n"} +{"message":"unresolved import `crate::igloo_core`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":52,"byte_end":62,"line_start":4,"line_end":4,"column_start":12,"column_end":22,"is_primary":true,"text":[{"text":"use crate::igloo_core::IglooErrType;","highlight_start":12,"highlight_end":22}],"label":"maybe a missing crate `igloo_core`?","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::igloo_core`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:4:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_core::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmaybe a missing crate `igloo_core`?\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooEnvInfo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":320,"byte_end":332,"line_start":17,"line_end":17,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooEnvInfo`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooEnvInfo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:17:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooEnvInfo`\u001b[0m\n\n"} +{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code example:\n\n```compile_fail,E0308\nlet x: i32 = \"I am not a number!\";\n// ~~~ ~~~~~~~~~~~~~~~~~~~~\n// | |\n// | initializing expression;\n// | compiler infers type `&str`\n// |\n// type `i32` assigned to variable `x`\n```\n\nThis error occurs when the compiler is unable to infer the concrete type of a\nvariable. It can occur in several cases, the most common being a mismatch\nbetween two types: the type the author explicitly assigned, and the type the\ncompiler inferred.\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":414,"byte_end":419,"line_start":21,"line_end":21,"column_start":3,"column_end":8,"is_primary":true,"text":[{"text":"\t\tOk(v) => man.merge(v),","highlight_start":3,"highlight_end":8}],"label":"expected struct `config::File`, found enum `std::result::Result`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_manifest/src/lib.rs","byte_start":293,"byte_end":408,"line_start":16,"line_end":19,"column_start":8,"column_end":14,"is_primary":false,"text":[{"text":"\tmatch config::File::with_name(","highlight_start":8,"highlight_end":32},{"text":"\t\tIglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")","highlight_start":1,"highlight_end":64},{"text":"\t\t\t.to_str()","highlight_start":1,"highlight_end":13},{"text":"\t\t\t.unwrap())","highlight_start":1,"highlight_end":14}],"label":"this expression has type `config::File`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `config::File`\n found enum `std::result::Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0308]\u001b[0m\u001b[0m\u001b[1m: mismatched types\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:21:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m match config::File::with_name(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m___________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .to_str()\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .unwrap())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|______________________-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthis expression has type `config::File`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m {\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m Ok(v) => man.merge(v),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected struct `config::File`, found enum `std::result::Result`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: expected struct `\u001b[0m\u001b[0m\u001b[1mconfig::File\u001b[0m\u001b[0m`\u001b[0m\n\u001b[0m found enum `\u001b[0m\u001b[0m\u001b[1mstd::result::Result<_, _>\u001b[0m\u001b[0m`\u001b[0m\n\n"} +{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code example:\n\n```compile_fail,E0308\nlet x: i32 = \"I am not a number!\";\n// ~~~ ~~~~~~~~~~~~~~~~~~~~\n// | |\n// | initializing expression;\n// | compiler infers type `&str`\n// |\n// type `i32` assigned to variable `x`\n```\n\nThis error occurs when the compiler is unable to infer the concrete type of a\nvariable. It can occur in several cases, the most common being a mismatch\nbetween two types: the type the author explicitly assigned, and the type the\ncompiler inferred.\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":439,"byte_end":445,"line_start":22,"line_end":22,"column_start":3,"column_end":9,"is_primary":true,"text":[{"text":"\t\tErr(e) =>","highlight_start":3,"highlight_end":9}],"label":"expected struct `config::File`, found enum `std::result::Result`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_manifest/src/lib.rs","byte_start":293,"byte_end":408,"line_start":16,"line_end":19,"column_start":8,"column_end":14,"is_primary":false,"text":[{"text":"\tmatch config::File::with_name(","highlight_start":8,"highlight_end":32},{"text":"\t\tIglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")","highlight_start":1,"highlight_end":64},{"text":"\t\t\t.to_str()","highlight_start":1,"highlight_end":13},{"text":"\t\t\t.unwrap())","highlight_start":1,"highlight_end":14}],"label":"this expression has type `config::File`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `config::File`\n found enum `std::result::Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0308]\u001b[0m\u001b[0m\u001b[1m: mismatched types\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:22:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m match config::File::with_name(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m___________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .to_str()\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .unwrap())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|______________________-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthis expression has type `config::File`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m Err(e) =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected struct `config::File`, found enum `std::result::Result`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: expected struct `\u001b[0m\u001b[0m\u001b[1mconfig::File\u001b[0m\u001b[0m`\u001b[0m\n\u001b[0m found enum `\u001b[0m\u001b[0m\u001b[1mstd::result::Result<_, _>\u001b[0m\u001b[0m`\u001b[0m\n\n"} +{"message":"aborting due to 5 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 5 previous errors\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0308, E0432, E0433.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0308, E0432, E0433.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0308`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0308`.\u001b[0m\n"} diff --git a/target/release/.fingerprint/serde_json-735629205996a197/invoked.timestamp b/target/debug/.fingerprint/igloo_manifest-a5e590f406b32424/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/serde_json-735629205996a197/invoked.timestamp rename to target/debug/.fingerprint/igloo_manifest-a5e590f406b32424/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_manifest-a5e590f406b32424/output-lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-a5e590f406b32424/output-lib-igloo_manifest new file mode 100644 index 0000000..c473026 --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-a5e590f406b32424/output-lib-igloo_manifest @@ -0,0 +1,8 @@ +{"message":"unresolved import `crate::Config`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":26,"byte_end":39,"line_start":3,"line_end":3,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":"use crate::Config;","highlight_start":5,"highlight_end":18}],"label":"no `Config` in the root","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"a similar name exists in the module","code":null,"level":"help","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":33,"byte_end":39,"line_start":3,"line_end":3,"column_start":12,"column_end":18,"is_primary":true,"text":[{"text":"use crate::Config;","highlight_start":12,"highlight_end":18}],"label":null,"suggested_replacement":"config","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::Config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::Config;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m------\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: a similar name exists in the module (notice the capitalization): `config`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `Config` in the root\u001b[0m\n\n"} +{"message":"unresolved import `crate::igloo_core`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018, paths in `use` statements are relative to the current module\nunless they begin with the name of a crate or a literal `crate::`, in which\ncase they start from the crate root. As in Rust 2015 code, the `self::` and\n`super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nIn Rust 2018 the `extern crate` declaration is not required and you can instead\njust `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":52,"byte_end":62,"line_start":4,"line_end":4,"column_start":12,"column_end":22,"is_primary":true,"text":[{"text":"use crate::igloo_core::IglooErrType;","highlight_start":12,"highlight_end":22}],"label":"maybe a missing crate `igloo_core`?","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `crate::igloo_core`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:4:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::igloo_core::IglooErrType;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmaybe a missing crate `igloo_core`?\u001b[0m\n\n"} +{"message":"failed to resolve: use of undeclared type or module `IglooEnvInfo`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":320,"byte_end":332,"line_start":17,"line_end":17,"column_start":3,"column_end":15,"is_primary":true,"text":[{"text":"\t\tIglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")","highlight_start":3,"highlight_end":15}],"label":"use of undeclared type or module `IglooEnvInfo`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of undeclared type or module `IglooEnvInfo`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:17:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `IglooEnvInfo`\u001b[0m\n\n"} +{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code example:\n\n```compile_fail,E0308\nlet x: i32 = \"I am not a number!\";\n// ~~~ ~~~~~~~~~~~~~~~~~~~~\n// | |\n// | initializing expression;\n// | compiler infers type `&str`\n// |\n// type `i32` assigned to variable `x`\n```\n\nThis error occurs when the compiler is unable to infer the concrete type of a\nvariable. It can occur in several cases, the most common being a mismatch\nbetween two types: the type the author explicitly assigned, and the type the\ncompiler inferred.\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":414,"byte_end":419,"line_start":21,"line_end":21,"column_start":3,"column_end":8,"is_primary":true,"text":[{"text":"\t\tOk(v) => man.merge(v),","highlight_start":3,"highlight_end":8}],"label":"expected struct `config::File`, found enum `std::result::Result`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_manifest/src/lib.rs","byte_start":293,"byte_end":408,"line_start":16,"line_end":19,"column_start":8,"column_end":14,"is_primary":false,"text":[{"text":"\tmatch config::File::with_name(","highlight_start":8,"highlight_end":32},{"text":"\t\tIglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")","highlight_start":1,"highlight_end":64},{"text":"\t\t\t.to_str()","highlight_start":1,"highlight_end":13},{"text":"\t\t\t.unwrap())","highlight_start":1,"highlight_end":14}],"label":"this expression has type `config::File`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `config::File`\n found enum `std::result::Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0308]\u001b[0m\u001b[0m\u001b[1m: mismatched types\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:21:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m match config::File::with_name(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m___________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .to_str()\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .unwrap())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|______________________-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthis expression has type `config::File`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m {\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m Ok(v) => man.merge(v),\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected struct `config::File`, found enum `std::result::Result`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: expected struct `\u001b[0m\u001b[0m\u001b[1mconfig::File\u001b[0m\u001b[0m`\u001b[0m\n\u001b[0m found enum `\u001b[0m\u001b[0m\u001b[1mstd::result::Result<_, _>\u001b[0m\u001b[0m`\u001b[0m\n\n"} +{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code example:\n\n```compile_fail,E0308\nlet x: i32 = \"I am not a number!\";\n// ~~~ ~~~~~~~~~~~~~~~~~~~~\n// | |\n// | initializing expression;\n// | compiler infers type `&str`\n// |\n// type `i32` assigned to variable `x`\n```\n\nThis error occurs when the compiler is unable to infer the concrete type of a\nvariable. It can occur in several cases, the most common being a mismatch\nbetween two types: the type the author explicitly assigned, and the type the\ncompiler inferred.\n"},"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":439,"byte_end":445,"line_start":22,"line_end":22,"column_start":3,"column_end":9,"is_primary":true,"text":[{"text":"\t\tErr(e) =>","highlight_start":3,"highlight_end":9}],"label":"expected struct `config::File`, found enum `std::result::Result`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"igloo_manifest/src/lib.rs","byte_start":293,"byte_end":408,"line_start":16,"line_end":19,"column_start":8,"column_end":14,"is_primary":false,"text":[{"text":"\tmatch config::File::with_name(","highlight_start":8,"highlight_end":32},{"text":"\t\tIglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")","highlight_start":1,"highlight_end":64},{"text":"\t\t\t.to_str()","highlight_start":1,"highlight_end":13},{"text":"\t\t\t.unwrap())","highlight_start":1,"highlight_end":14}],"label":"this expression has type `config::File`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `config::File`\n found enum `std::result::Result<_, _>`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0308]\u001b[0m\u001b[0m\u001b[1m: mismatched types\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:22:3\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m match config::File::with_name(\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m___________-\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m IglooEnvInfo::info().esfd.join(\"manifest/make-manifest.toml\")\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .to_str()\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m .unwrap())\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|______________________-\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthis expression has type `config::File`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m Err(e) =>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected struct `config::File`, found enum `std::result::Result`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: expected struct `\u001b[0m\u001b[0m\u001b[1mconfig::File\u001b[0m\u001b[0m`\u001b[0m\n\u001b[0m found enum `\u001b[0m\u001b[0m\u001b[1mstd::result::Result<_, _>\u001b[0m\u001b[0m`\u001b[0m\n\n"} +{"message":"aborting due to 5 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 5 previous errors\u001b[0m\n\n"} +{"message":"Some errors have detailed explanations: E0308, E0432, E0433.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0308, E0432, E0433.\u001b[0m\n"} +{"message":"For more information about an error, try `rustc --explain E0308`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0308`.\u001b[0m\n"} diff --git a/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/dep-lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/dep-lib-igloo_manifest new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/dep-lib-igloo_manifest differ diff --git a/target/release/.fingerprint/serde_json-cebdf3d160825960/invoked.timestamp b/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/serde_json-cebdf3d160825960/invoked.timestamp rename to target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/lib-igloo_manifest new file mode 100644 index 0000000..2ace244 --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/lib-igloo_manifest @@ -0,0 +1 @@ +df476e404b108466 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/lib-igloo_manifest.json b/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/lib-igloo_manifest.json new file mode 100644 index 0000000..ca5035f --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/lib-igloo_manifest.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7705133129740223161,"profile":18074012566298724745,"path":613830125440917939,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_manifest-a898a4bcc05e7545/dep-lib-igloo_manifest"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/dep-test-lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/dep-test-lib-igloo_manifest new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/dep-test-lib-igloo_manifest differ diff --git a/target/release/.fingerprint/serde_test-6e2b08d7187046f1/invoked.timestamp b/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/serde_test-6e2b08d7187046f1/invoked.timestamp rename to target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/output-test-lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/output-test-lib-igloo_manifest new file mode 100644 index 0000000..caa3882 --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/output-test-lib-igloo_manifest @@ -0,0 +1,2 @@ +{"message":"missing `fn` for function definition","code":null,"level":"error","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":121,"byte_end":122,"line_start":11,"line_end":11,"column_start":4,"column_end":5,"is_primary":true,"text":[{"text":"pub get_master_make_manifest() -> Result<>","highlight_start":4,"highlight_end":5}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"add `fn` here to parse `get_master_make_manifest` as a public function","code":null,"level":"help","spans":[{"file_name":"igloo_manifest/src/lib.rs","byte_start":121,"byte_end":122,"line_start":11,"line_end":11,"column_start":4,"column_end":5,"is_primary":true,"text":[{"text":"pub get_master_make_manifest() -> Result<>","highlight_start":4,"highlight_end":5}],"label":null,"suggested_replacement":" fn ","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: missing `fn` for function definition\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0migloo_manifest/src/lib.rs:11:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m11\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub get_master_make_manifest() -> Result<>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: add `fn` here to parse `get_master_make_manifest` as a public function\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m11\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0mpub fn get_master_make_manifest() -> Result<>\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m^^\u001b[0m\n\n"} +{"message":"aborting due to previous error","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to previous error\u001b[0m\n\n"} diff --git a/target/release/build/memchr-223fd63faab3ed19/stderr b/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/test-lib-igloo_manifest similarity index 100% rename from target/release/build/memchr-223fd63faab3ed19/stderr rename to target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/test-lib-igloo_manifest diff --git a/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/test-lib-igloo_manifest.json b/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/test-lib-igloo_manifest.json new file mode 100644 index 0000000..bd1ecaa --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-c8af8e41b315e052/test-lib-igloo_manifest.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7705133129740223161,"profile":10655494245791646288,"path":613830125440917939,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_manifest-c8af8e41b315e052/dep-test-lib-igloo_manifest"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/dep-lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/dep-lib-igloo_manifest new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/dep-lib-igloo_manifest differ diff --git a/target/release/.fingerprint/static_assertions-8642131a574c757d/invoked.timestamp b/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/static_assertions-8642131a574c757d/invoked.timestamp rename to target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/invoked.timestamp diff --git a/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/lib-igloo_manifest b/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/lib-igloo_manifest new file mode 100644 index 0000000..88ec009 --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/lib-igloo_manifest @@ -0,0 +1 @@ +fc88deff7b6aa377 \ No newline at end of file diff --git a/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/lib-igloo_manifest.json b/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/lib-igloo_manifest.json new file mode 100644 index 0000000..aa53b22 --- /dev/null +++ b/target/debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/lib-igloo_manifest.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":7705133129740223161,"profile":18074012566298724745,"path":613830125440917939,"deps":[[120200842360645998,"igloo_base",false,2546000521198750159],[1122423871155493656,"config",false,5716277277819123494]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/igloo_manifest-d3b77ad10ba9545a/dep-lib-igloo_manifest"}}],"rustflags":[],"metadata":3437543006848290768,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-22fd154fb31f4254/build-script-build-script-build b/target/debug/.fingerprint/libc-22fd154fb31f4254/build-script-build-script-build new file mode 100644 index 0000000..4456139 --- /dev/null +++ b/target/debug/.fingerprint/libc-22fd154fb31f4254/build-script-build-script-build @@ -0,0 +1 @@ +fa16b0bc502323c5 \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-22fd154fb31f4254/build-script-build-script-build.json b/target/debug/.fingerprint/libc-22fd154fb31f4254/build-script-build-script-build.json new file mode 100644 index 0000000..5f8c9e5 --- /dev/null +++ b/target/debug/.fingerprint/libc-22fd154fb31f4254/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":10088282520713642473,"profile":6299028598154287785,"path":9991745987741175669,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-22fd154fb31f4254/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14998826085014762512,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-06e1e7e4c677a486/dep-build-script-build-script-build b/target/debug/.fingerprint/libc-22fd154fb31f4254/dep-build-script-build-script-build similarity index 100% rename from target/release/.fingerprint/bitflags-06e1e7e4c677a486/dep-build-script-build-script-build rename to target/debug/.fingerprint/libc-22fd154fb31f4254/dep-build-script-build-script-build diff --git a/target/release/.fingerprint/strsim-26c573e37cfcad18/invoked.timestamp b/target/debug/.fingerprint/libc-22fd154fb31f4254/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/strsim-26c573e37cfcad18/invoked.timestamp rename to target/debug/.fingerprint/libc-22fd154fb31f4254/invoked.timestamp diff --git a/target/debug/.fingerprint/libc-665157eee066cdda/run-build-script-build-script-build b/target/debug/.fingerprint/libc-665157eee066cdda/run-build-script-build-script-build new file mode 100644 index 0000000..9b2f407 --- /dev/null +++ b/target/debug/.fingerprint/libc-665157eee066cdda/run-build-script-build-script-build @@ -0,0 +1 @@ +922c2bbdc9818bff \ No newline at end of file diff --git a/target/release/.fingerprint/libc-fc4010789fc5747b/run-build-script-build-script-build.json b/target/debug/.fingerprint/libc-665157eee066cdda/run-build-script-build-script-build.json similarity index 56% rename from target/release/.fingerprint/libc-fc4010789fc5747b/run-build-script-build-script-build.json rename to target/debug/.fingerprint/libc-665157eee066cdda/run-build-script-build-script-build.json index f537640..bf35de1 100644 --- a/target/release/.fingerprint/libc-fc4010789fc5747b/run-build-script-build-script-build.json +++ b/target/debug/.fingerprint/libc-665157eee066cdda/run-build-script-build-script-build.json @@ -1 +1 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[5317750649359053169,"build_script_build",false,12141778351250306696]],"local":[{"Precalculated":"0.2.71"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file +{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[5317750649359053169,"build_script_build",false,14205236479326689018]],"local":[{"Precalculated":"0.2.71"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/dep-lib-libc b/target/debug/.fingerprint/libc-7753addeb8e632c3/dep-lib-libc similarity index 100% rename from target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/dep-lib-libc rename to target/debug/.fingerprint/libc-7753addeb8e632c3/dep-lib-libc diff --git a/target/release/.fingerprint/syn-12af7e02de91c4e7/invoked.timestamp b/target/debug/.fingerprint/libc-7753addeb8e632c3/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/syn-12af7e02de91c4e7/invoked.timestamp rename to target/debug/.fingerprint/libc-7753addeb8e632c3/invoked.timestamp diff --git a/target/debug/.fingerprint/libc-7753addeb8e632c3/lib-libc b/target/debug/.fingerprint/libc-7753addeb8e632c3/lib-libc new file mode 100644 index 0000000..afb574f --- /dev/null +++ b/target/debug/.fingerprint/libc-7753addeb8e632c3/lib-libc @@ -0,0 +1 @@ +dd7261b1c72fecf2 \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-7753addeb8e632c3/lib-libc.json b/target/debug/.fingerprint/libc-7753addeb8e632c3/lib-libc.json new file mode 100644 index 0000000..72c40a6 --- /dev/null +++ b/target/debug/.fingerprint/libc-7753addeb8e632c3/lib-libc.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":1047533068072243941,"profile":6299028598154287785,"path":12925603851895398535,"deps":[[5317750649359053169,"build_script_build",false,18413954204896537746]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-7753addeb8e632c3/dep-lib-libc"}}],"rustflags":[],"metadata":14998826085014762512,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/log-0278ff0613969c90/build-script-build-script-build b/target/debug/.fingerprint/log-0278ff0613969c90/build-script-build-script-build new file mode 100644 index 0000000..c41b87e --- /dev/null +++ b/target/debug/.fingerprint/log-0278ff0613969c90/build-script-build-script-build @@ -0,0 +1 @@ +9dbe068e1a4b692d \ No newline at end of file diff --git a/target/debug/.fingerprint/log-0278ff0613969c90/build-script-build-script-build.json b/target/debug/.fingerprint/log-0278ff0613969c90/build-script-build-script-build.json new file mode 100644 index 0000000..3d52da6 --- /dev/null +++ b/target/debug/.fingerprint/log-0278ff0613969c90/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":10088282520713642473,"profile":6299028598154287785,"path":12789986868091722243,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-0278ff0613969c90/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":179143468214550567,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-5767be7128df3faa/dep-build-script-build-script-build b/target/debug/.fingerprint/log-0278ff0613969c90/dep-build-script-build-script-build similarity index 100% rename from target/release/.fingerprint/indexmap-5767be7128df3faa/dep-build-script-build-script-build rename to target/debug/.fingerprint/log-0278ff0613969c90/dep-build-script-build-script-build diff --git a/target/release/.fingerprint/syn-b38a1eecdb910211/invoked.timestamp b/target/debug/.fingerprint/log-0278ff0613969c90/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/syn-b38a1eecdb910211/invoked.timestamp rename to target/debug/.fingerprint/log-0278ff0613969c90/invoked.timestamp diff --git a/target/release/.fingerprint/bitflags-ff7f5482904c4de3/dep-lib-bitflags b/target/debug/.fingerprint/log-08d572310e53ae0e/dep-lib-log similarity index 100% rename from target/release/.fingerprint/bitflags-ff7f5482904c4de3/dep-lib-bitflags rename to target/debug/.fingerprint/log-08d572310e53ae0e/dep-lib-log diff --git a/target/release/.fingerprint/termcolor-9965aade8290d241/invoked.timestamp b/target/debug/.fingerprint/log-08d572310e53ae0e/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/termcolor-9965aade8290d241/invoked.timestamp rename to target/debug/.fingerprint/log-08d572310e53ae0e/invoked.timestamp diff --git a/target/debug/.fingerprint/log-08d572310e53ae0e/lib-log b/target/debug/.fingerprint/log-08d572310e53ae0e/lib-log new file mode 100644 index 0000000..08ce12f --- /dev/null +++ b/target/debug/.fingerprint/log-08d572310e53ae0e/lib-log @@ -0,0 +1 @@ +c3110aec2f50c09d \ No newline at end of file diff --git a/target/debug/.fingerprint/log-08d572310e53ae0e/lib-log.json b/target/debug/.fingerprint/log-08d572310e53ae0e/lib-log.json new file mode 100644 index 0000000..b5c3157 --- /dev/null +++ b/target/debug/.fingerprint/log-08d572310e53ae0e/lib-log.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":2735847673528249900,"profile":6299028598154287785,"path":224509318319670974,"deps":[[5027596198908666028,"build_script_build",false,6363562549653420032],[13837234849270857574,"cfg_if",false,11605622423919878255]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-08d572310e53ae0e/dep-lib-log"}}],"rustflags":[],"metadata":179143468214550567,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/log-4aee437091f5cfdc/run-build-script-build-script-build b/target/debug/.fingerprint/log-4aee437091f5cfdc/run-build-script-build-script-build new file mode 100644 index 0000000..bbb95ba --- /dev/null +++ b/target/debug/.fingerprint/log-4aee437091f5cfdc/run-build-script-build-script-build @@ -0,0 +1 @@ +0038125e6cea4f58 \ No newline at end of file diff --git a/target/debug/.fingerprint/log-4aee437091f5cfdc/run-build-script-build-script-build.json b/target/debug/.fingerprint/log-4aee437091f5cfdc/run-build-script-build-script-build.json new file mode 100644 index 0000000..f242d79 --- /dev/null +++ b/target/debug/.fingerprint/log-4aee437091f5cfdc/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[5027596198908666028,"build_script_build",false,3272229181685415581]],"local":[{"RerunIfChanged":{"output":"debug/build/log-4aee437091f5cfdc/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-0f89700f04afbfc5/dep-lib-cfg-if b/target/debug/.fingerprint/metadeps-28a05530d0c520e4/dep-lib-metadeps similarity index 100% rename from target/release/.fingerprint/cfg-if-0f89700f04afbfc5/dep-lib-cfg-if rename to target/debug/.fingerprint/metadeps-28a05530d0c520e4/dep-lib-metadeps diff --git a/target/release/.fingerprint/textwrap-ba51af69fce8bf78/invoked.timestamp b/target/debug/.fingerprint/metadeps-28a05530d0c520e4/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/textwrap-ba51af69fce8bf78/invoked.timestamp rename to target/debug/.fingerprint/metadeps-28a05530d0c520e4/invoked.timestamp diff --git a/target/debug/.fingerprint/metadeps-28a05530d0c520e4/lib-metadeps b/target/debug/.fingerprint/metadeps-28a05530d0c520e4/lib-metadeps new file mode 100644 index 0000000..2a0373d --- /dev/null +++ b/target/debug/.fingerprint/metadeps-28a05530d0c520e4/lib-metadeps @@ -0,0 +1 @@ +79f491fc70968c88 \ No newline at end of file diff --git a/target/debug/.fingerprint/metadeps-28a05530d0c520e4/lib-metadeps.json b/target/debug/.fingerprint/metadeps-28a05530d0c520e4/lib-metadeps.json new file mode 100644 index 0000000..952c4bf --- /dev/null +++ b/target/debug/.fingerprint/metadeps-28a05530d0c520e4/lib-metadeps.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":10128521975613193150,"profile":6299028598154287785,"path":14467810556981402465,"deps":[[1091482576580977227,"pkg_config",false,13318566542799881225],[5169132608787813152,"error_chain",false,5264589249113046470],[15573127350497983092,"toml",false,14205482576214093734]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/metadeps-28a05530d0c520e4/dep-lib-metadeps"}}],"rustflags":[],"metadata":8117125915064111821,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/dep-lib-clap_derive b/target/debug/.fingerprint/pkg-config-cf02468aab053ab0/dep-lib-pkg-config similarity index 100% rename from target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/dep-lib-clap_derive rename to target/debug/.fingerprint/pkg-config-cf02468aab053ab0/dep-lib-pkg-config diff --git a/target/release/.fingerprint/thread_local-9a90c0c2354361f2/invoked.timestamp b/target/debug/.fingerprint/pkg-config-cf02468aab053ab0/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/thread_local-9a90c0c2354361f2/invoked.timestamp rename to target/debug/.fingerprint/pkg-config-cf02468aab053ab0/invoked.timestamp diff --git a/target/debug/.fingerprint/pkg-config-cf02468aab053ab0/lib-pkg-config b/target/debug/.fingerprint/pkg-config-cf02468aab053ab0/lib-pkg-config new file mode 100644 index 0000000..734ef1e --- /dev/null +++ b/target/debug/.fingerprint/pkg-config-cf02468aab053ab0/lib-pkg-config @@ -0,0 +1 @@ +0944fdb4b40dd5b8 \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-config-cf02468aab053ab0/lib-pkg-config.json b/target/debug/.fingerprint/pkg-config-cf02468aab053ab0/lib-pkg-config.json new file mode 100644 index 0000000..558902e --- /dev/null +++ b/target/debug/.fingerprint/pkg-config-cf02468aab053ab0/lib-pkg-config.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":17338237884280510644,"profile":6299028598154287785,"path":16553144048136573191,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pkg-config-cf02468aab053ab0/dep-lib-pkg-config"}}],"rustflags":[],"metadata":6346311810227624339,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/toml-468b7cd3ec291e4d/dep-lib-toml b/target/debug/.fingerprint/toml-98e7d26a4c38ba35/dep-lib-toml similarity index 100% rename from target/release/.fingerprint/toml-468b7cd3ec291e4d/dep-lib-toml rename to target/debug/.fingerprint/toml-98e7d26a4c38ba35/dep-lib-toml diff --git a/target/release/.fingerprint/toml-468b7cd3ec291e4d/invoked.timestamp b/target/debug/.fingerprint/toml-98e7d26a4c38ba35/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/toml-468b7cd3ec291e4d/invoked.timestamp rename to target/debug/.fingerprint/toml-98e7d26a4c38ba35/invoked.timestamp diff --git a/target/debug/.fingerprint/toml-98e7d26a4c38ba35/lib-toml b/target/debug/.fingerprint/toml-98e7d26a4c38ba35/lib-toml new file mode 100644 index 0000000..d4e8f86 --- /dev/null +++ b/target/debug/.fingerprint/toml-98e7d26a4c38ba35/lib-toml @@ -0,0 +1 @@ +a6ef3da2230324c5 \ No newline at end of file diff --git a/target/debug/.fingerprint/toml-98e7d26a4c38ba35/lib-toml.json b/target/debug/.fingerprint/toml-98e7d26a4c38ba35/lib-toml.json new file mode 100644 index 0000000..3feac69 --- /dev/null +++ b/target/debug/.fingerprint/toml-98e7d26a4c38ba35/lib-toml.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":1657318743545040121,"profile":6299028598154287785,"path":7001088468181858963,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/toml-98e7d26a4c38ba35/dep-lib-toml"}}],"rustflags":[],"metadata":12991457485373982576,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/zmq-4d080389b780e507/run-build-script-build-script-build b/target/debug/.fingerprint/zmq-4d080389b780e507/run-build-script-build-script-build new file mode 100644 index 0000000..b1abb91 --- /dev/null +++ b/target/debug/.fingerprint/zmq-4d080389b780e507/run-build-script-build-script-build @@ -0,0 +1 @@ +99b32fa319ffee9e \ No newline at end of file diff --git a/target/debug/.fingerprint/zmq-4d080389b780e507/run-build-script-build-script-build.json b/target/debug/.fingerprint/zmq-4d080389b780e507/run-build-script-build-script-build.json new file mode 100644 index 0000000..930072c --- /dev/null +++ b/target/debug/.fingerprint/zmq-4d080389b780e507/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[300900241173941925,"build_script_build",false,18352378459222011706],[5094819675033246225,"build_script_main",false,13456881178237317777]],"local":[{"Precalculated":"0.9.2"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/config-920fae297337ba9d/dep-lib-config b/target/debug/.fingerprint/zmq-647b43f31da68993/dep-lib-zmq similarity index 100% rename from target/release/.fingerprint/config-920fae297337ba9d/dep-lib-config rename to target/debug/.fingerprint/zmq-647b43f31da68993/dep-lib-zmq diff --git a/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/invoked.timestamp b/target/debug/.fingerprint/zmq-647b43f31da68993/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/invoked.timestamp rename to target/debug/.fingerprint/zmq-647b43f31da68993/invoked.timestamp diff --git a/target/debug/.fingerprint/zmq-647b43f31da68993/lib-zmq b/target/debug/.fingerprint/zmq-647b43f31da68993/lib-zmq new file mode 100644 index 0000000..2f37a8a --- /dev/null +++ b/target/debug/.fingerprint/zmq-647b43f31da68993/lib-zmq @@ -0,0 +1 @@ +ece7b7223c7c01b1 \ No newline at end of file diff --git a/target/debug/.fingerprint/zmq-647b43f31da68993/lib-zmq.json b/target/debug/.fingerprint/zmq-647b43f31da68993/lib-zmq.json new file mode 100644 index 0000000..b22028d --- /dev/null +++ b/target/debug/.fingerprint/zmq-647b43f31da68993/lib-zmq.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[\"default\", \"zmq_has\"]","target":15842435242835239406,"profile":6299028598154287785,"path":7960455471993679579,"deps":[[300900241173941925,"build_script_build",false,11452371388026827673],[4117749705314174326,"bitflags",false,6071948545510077164],[5027596198908666028,"log",false,11367173626236899779],[5094819675033246225,"zmq_sys",false,13443383302124197273],[5317750649359053169,"libc",false,17504418386403226333]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmq-647b43f31da68993/dep-lib-zmq"}}],"rustflags":[],"metadata":7569578922049078127,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/zmq-bf842c488af81ca0/build-script-build-script-build b/target/debug/.fingerprint/zmq-bf842c488af81ca0/build-script-build-script-build new file mode 100644 index 0000000..a7a5796 --- /dev/null +++ b/target/debug/.fingerprint/zmq-bf842c488af81ca0/build-script-build-script-build @@ -0,0 +1 @@ +3a6f753df9beb0fe \ No newline at end of file diff --git a/target/debug/.fingerprint/zmq-bf842c488af81ca0/build-script-build-script-build.json b/target/debug/.fingerprint/zmq-bf842c488af81ca0/build-script-build-script-build.json new file mode 100644 index 0000000..420035f --- /dev/null +++ b/target/debug/.fingerprint/zmq-bf842c488af81ca0/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[\"default\", \"zmq_has\"]","target":10429514197457385088,"profile":6299028598154287785,"path":2639912789318925490,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmq-bf842c488af81ca0/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":7569578922049078127,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/lexical-core-3f76a674b0092248/dep-build-script-build-script-build b/target/debug/.fingerprint/zmq-bf842c488af81ca0/dep-build-script-build-script-build similarity index 100% rename from target/release/.fingerprint/lexical-core-3f76a674b0092248/dep-build-script-build-script-build rename to target/debug/.fingerprint/zmq-bf842c488af81ca0/dep-build-script-build-script-build diff --git a/target/release/.fingerprint/unicode-width-5f4356788e200ee8/invoked.timestamp b/target/debug/.fingerprint/zmq-bf842c488af81ca0/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/unicode-width-5f4356788e200ee8/invoked.timestamp rename to target/debug/.fingerprint/zmq-bf842c488af81ca0/invoked.timestamp diff --git a/target/release/.fingerprint/heck-1d4454dbf81ee16c/dep-lib-heck b/target/debug/.fingerprint/zmq-sys-58751278e8756dc3/dep-lib-zmq-sys similarity index 100% rename from target/release/.fingerprint/heck-1d4454dbf81ee16c/dep-lib-heck rename to target/debug/.fingerprint/zmq-sys-58751278e8756dc3/dep-lib-zmq-sys diff --git a/target/release/.fingerprint/unicode-xid-8663f59690402b5f/invoked.timestamp b/target/debug/.fingerprint/zmq-sys-58751278e8756dc3/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/unicode-xid-8663f59690402b5f/invoked.timestamp rename to target/debug/.fingerprint/zmq-sys-58751278e8756dc3/invoked.timestamp diff --git a/target/debug/.fingerprint/zmq-sys-58751278e8756dc3/lib-zmq-sys b/target/debug/.fingerprint/zmq-sys-58751278e8756dc3/lib-zmq-sys new file mode 100644 index 0000000..c77860d --- /dev/null +++ b/target/debug/.fingerprint/zmq-sys-58751278e8756dc3/lib-zmq-sys @@ -0,0 +1 @@ +99d5871ee37d90ba \ No newline at end of file diff --git a/target/debug/.fingerprint/zmq-sys-58751278e8756dc3/lib-zmq-sys.json b/target/debug/.fingerprint/zmq-sys-58751278e8756dc3/lib-zmq-sys.json new file mode 100644 index 0000000..767e95f --- /dev/null +++ b/target/debug/.fingerprint/zmq-sys-58751278e8756dc3/lib-zmq-sys.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":17102231244969698613,"profile":6299028598154287785,"path":13039261966920708508,"deps":[[5094819675033246225,"build_script_main",false,13456881178237317777],[5317750649359053169,"libc",false,17504418386403226333]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmq-sys-58751278e8756dc3/dep-lib-zmq-sys"}}],"rustflags":[],"metadata":1594201700259045113,"config":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/zmq-sys-a71541d4e298393b/build-script-build-script-main b/target/debug/.fingerprint/zmq-sys-a71541d4e298393b/build-script-build-script-main new file mode 100644 index 0000000..2638513 --- /dev/null +++ b/target/debug/.fingerprint/zmq-sys-a71541d4e298393b/build-script-build-script-main @@ -0,0 +1 @@ +1e18eb36ef972549 \ No newline at end of file diff --git a/target/debug/.fingerprint/zmq-sys-a71541d4e298393b/build-script-build-script-main.json b/target/debug/.fingerprint/zmq-sys-a71541d4e298393b/build-script-build-script-main.json new file mode 100644 index 0000000..13ead81 --- /dev/null +++ b/target/debug/.fingerprint/zmq-sys-a71541d4e298393b/build-script-build-script-main.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"[]","target":1549943918372116673,"profile":6299028598154287785,"path":8749340236417958695,"deps":[[3137947637117482855,"metadeps",false,9839404697915618425]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmq-sys-a71541d4e298393b/dep-build-script-build-script-main"}}],"rustflags":[],"metadata":1594201700259045113,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-d71227ee9669aacc/dep-lib-indexmap b/target/debug/.fingerprint/zmq-sys-a71541d4e298393b/dep-build-script-build-script-main similarity index 100% rename from target/release/.fingerprint/indexmap-d71227ee9669aacc/dep-lib-indexmap rename to target/debug/.fingerprint/zmq-sys-a71541d4e298393b/dep-build-script-build-script-main diff --git a/target/release/.fingerprint/vec_map-405e6da89d886d17/invoked.timestamp b/target/debug/.fingerprint/zmq-sys-a71541d4e298393b/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/vec_map-405e6da89d886d17/invoked.timestamp rename to target/debug/.fingerprint/zmq-sys-a71541d4e298393b/invoked.timestamp diff --git a/target/debug/.fingerprint/zmq-sys-b155e199dba518e5/run-build-script-build-script-main b/target/debug/.fingerprint/zmq-sys-b155e199dba518e5/run-build-script-build-script-main new file mode 100644 index 0000000..ef81b68 --- /dev/null +++ b/target/debug/.fingerprint/zmq-sys-b155e199dba518e5/run-build-script-build-script-main @@ -0,0 +1 @@ +91b2794d2272c0ba \ No newline at end of file diff --git a/target/debug/.fingerprint/zmq-sys-b155e199dba518e5/run-build-script-build-script-main.json b/target/debug/.fingerprint/zmq-sys-b155e199dba518e5/run-build-script-build-script-main.json new file mode 100644 index 0000000..5474ccc --- /dev/null +++ b/target/debug/.fingerprint/zmq-sys-b155e199dba518e5/run-build-script-build-script-main.json @@ -0,0 +1 @@ +{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[5094819675033246225,"build_script_main",false,5270785992581388318]],"local":[{"RerunIfEnvChanged":{"var":"LIBZMQ_NO_PKG_CONFIG","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG","val":null}},{"RerunIfEnvChanged":{"var":"LIBZMQ_STATIC","val":null}},{"RerunIfEnvChanged":{"var":"LIBZMQ_DYNAMIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_ALL_STATIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_ALL_DYNAMIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_PATH_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_PATH_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG_PATH","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_PATH","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_LIBDIR_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_LIBDIR_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG_LIBDIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_LIBDIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG_SYSROOT_DIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR","val":null}},{"RerunIfEnvChanged":{"var":"SYSROOT","val":null}},{"RerunIfEnvChanged":{"var":"LIBZMQ_STATIC","val":null}},{"RerunIfEnvChanged":{"var":"LIBZMQ_DYNAMIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_ALL_STATIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_ALL_DYNAMIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG","val":null}},{"RerunIfEnvChanged":{"var":"LIBZMQ_STATIC","val":null}},{"RerunIfEnvChanged":{"var":"LIBZMQ_DYNAMIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_ALL_STATIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_ALL_DYNAMIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_PATH_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_PATH_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG_PATH","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_PATH","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_LIBDIR_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_LIBDIR_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG_LIBDIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_LIBDIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG_SYSROOT_DIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR","val":null}}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/debug/build/libc-22fd154fb31f4254/build-script-build b/target/debug/build/libc-22fd154fb31f4254/build-script-build new file mode 100644 index 0000000..0d9ddc4 Binary files /dev/null and b/target/debug/build/libc-22fd154fb31f4254/build-script-build differ diff --git a/target/debug/build/libc-22fd154fb31f4254/build_script_build-22fd154fb31f4254 b/target/debug/build/libc-22fd154fb31f4254/build_script_build-22fd154fb31f4254 new file mode 100644 index 0000000..0d9ddc4 Binary files /dev/null and b/target/debug/build/libc-22fd154fb31f4254/build_script_build-22fd154fb31f4254 differ diff --git a/target/debug/build/libc-22fd154fb31f4254/build_script_build-22fd154fb31f4254.d b/target/debug/build/libc-22fd154fb31f4254/build_script_build-22fd154fb31f4254.d new file mode 100644 index 0000000..7afe9f2 --- /dev/null +++ b/target/debug/build/libc-22fd154fb31f4254/build_script_build-22fd154fb31f4254.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/libc-22fd154fb31f4254/build_script_build-22fd154fb31f4254: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/build.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/libc-22fd154fb31f4254/build_script_build-22fd154fb31f4254.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/build.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/build.rs: diff --git a/target/release/.fingerprint/version_check-00bf083b16e77ed7/invoked.timestamp b/target/debug/build/libc-665157eee066cdda/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/version_check-00bf083b16e77ed7/invoked.timestamp rename to target/debug/build/libc-665157eee066cdda/invoked.timestamp diff --git a/target/release/build/libc-fc4010789fc5747b/output b/target/debug/build/libc-665157eee066cdda/output similarity index 100% rename from target/release/build/libc-fc4010789fc5747b/output rename to target/debug/build/libc-665157eee066cdda/output diff --git a/target/release/build/nom-dfe7653f1f37a5b6/root-output b/target/debug/build/libc-665157eee066cdda/root-output similarity index 61% rename from target/release/build/nom-dfe7653f1f37a5b6/root-output rename to target/debug/build/libc-665157eee066cdda/root-output index 5fc8fce..578d851 100644 --- a/target/release/build/nom-dfe7653f1f37a5b6/root-output +++ b/target/debug/build/libc-665157eee066cdda/root-output @@ -1 +1 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/nom-dfe7653f1f37a5b6/out \ No newline at end of file +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/libc-665157eee066cdda/out \ No newline at end of file diff --git a/target/release/build/nom-dfe7653f1f37a5b6/stderr b/target/debug/build/libc-665157eee066cdda/stderr similarity index 100% rename from target/release/build/nom-dfe7653f1f37a5b6/stderr rename to target/debug/build/libc-665157eee066cdda/stderr diff --git a/target/release/build/serde_json-cebdf3d160825960/build-script-build b/target/debug/build/log-0278ff0613969c90/build-script-build similarity index 51% rename from target/release/build/serde_json-cebdf3d160825960/build-script-build rename to target/debug/build/log-0278ff0613969c90/build-script-build index f639a96..964c522 100644 Binary files a/target/release/build/serde_json-cebdf3d160825960/build-script-build and b/target/debug/build/log-0278ff0613969c90/build-script-build differ diff --git a/target/release/build/serde_json-cebdf3d160825960/build_script_build-cebdf3d160825960 b/target/debug/build/log-0278ff0613969c90/build_script_build-0278ff0613969c90 similarity index 51% rename from target/release/build/serde_json-cebdf3d160825960/build_script_build-cebdf3d160825960 rename to target/debug/build/log-0278ff0613969c90/build_script_build-0278ff0613969c90 index f639a96..964c522 100644 Binary files a/target/release/build/serde_json-cebdf3d160825960/build_script_build-cebdf3d160825960 and b/target/debug/build/log-0278ff0613969c90/build_script_build-0278ff0613969c90 differ diff --git a/target/debug/build/log-0278ff0613969c90/build_script_build-0278ff0613969c90.d b/target/debug/build/log-0278ff0613969c90/build_script_build-0278ff0613969c90.d new file mode 100644 index 0000000..4a860a6 --- /dev/null +++ b/target/debug/build/log-0278ff0613969c90/build_script_build-0278ff0613969c90.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/log-0278ff0613969c90/build_script_build-0278ff0613969c90: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/build.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/log-0278ff0613969c90/build_script_build-0278ff0613969c90.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/build.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/build.rs: diff --git a/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/invoked.timestamp b/target/debug/build/log-4aee437091f5cfdc/invoked.timestamp similarity index 100% rename from target/release/.fingerprint/yaml-rust-131c78e154e4a52e/invoked.timestamp rename to target/debug/build/log-4aee437091f5cfdc/invoked.timestamp diff --git a/target/release/build/indexmap-62d8e03465cfcdd6/output b/target/debug/build/log-4aee437091f5cfdc/output similarity index 54% rename from target/release/build/indexmap-62d8e03465cfcdd6/output rename to target/debug/build/log-4aee437091f5cfdc/output index 85859ce..535a162 100644 --- a/target/release/build/indexmap-62d8e03465cfcdd6/output +++ b/target/debug/build/log-4aee437091f5cfdc/output @@ -1,2 +1,2 @@ -cargo:rustc-cfg=has_std +cargo:rustc-cfg=atomic_cas cargo:rerun-if-changed=build.rs diff --git a/target/release/build/ryu-e4213df9ff9d99ae/root-output b/target/debug/build/log-4aee437091f5cfdc/root-output similarity index 61% rename from target/release/build/ryu-e4213df9ff9d99ae/root-output rename to target/debug/build/log-4aee437091f5cfdc/root-output index a3359cd..bd260bc 100644 --- a/target/release/build/ryu-e4213df9ff9d99ae/root-output +++ b/target/debug/build/log-4aee437091f5cfdc/root-output @@ -1 +1 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/ryu-e4213df9ff9d99ae/out \ No newline at end of file +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/log-4aee437091f5cfdc/out \ No newline at end of file diff --git a/target/release/build/num-traits-5f03bd98ed02d543/stderr b/target/debug/build/log-4aee437091f5cfdc/stderr similarity index 100% rename from target/release/build/num-traits-5f03bd98ed02d543/stderr rename to target/debug/build/log-4aee437091f5cfdc/stderr diff --git a/target/release/build/bitflags-3d65992b427b8247/invoked.timestamp b/target/debug/build/zmq-4d080389b780e507/invoked.timestamp similarity index 100% rename from target/release/build/bitflags-3d65992b427b8247/invoked.timestamp rename to target/debug/build/zmq-4d080389b780e507/invoked.timestamp diff --git a/target/debug/build/zmq-4d080389b780e507/output b/target/debug/build/zmq-4d080389b780e507/output new file mode 100644 index 0000000..d1c412f --- /dev/null +++ b/target/debug/build/zmq-4d080389b780e507/output @@ -0,0 +1 @@ +cargo:rustc-env=BUILD_PROFILE=debug diff --git a/target/release/build/syn-d4a547281a1b9843/root-output b/target/debug/build/zmq-4d080389b780e507/root-output similarity index 61% rename from target/release/build/syn-d4a547281a1b9843/root-output rename to target/debug/build/zmq-4d080389b780e507/root-output index 9822643..5c642b9 100644 --- a/target/release/build/syn-d4a547281a1b9843/root-output +++ b/target/debug/build/zmq-4d080389b780e507/root-output @@ -1 +1 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/syn-d4a547281a1b9843/out \ No newline at end of file +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/zmq-4d080389b780e507/out \ No newline at end of file diff --git a/target/release/build/proc-macro-error-attr-eb9cae79429bba7f/stderr b/target/debug/build/zmq-4d080389b780e507/stderr similarity index 100% rename from target/release/build/proc-macro-error-attr-eb9cae79429bba7f/stderr rename to target/debug/build/zmq-4d080389b780e507/stderr diff --git a/target/debug/build/zmq-bf842c488af81ca0/build-script-build b/target/debug/build/zmq-bf842c488af81ca0/build-script-build new file mode 100644 index 0000000..d5e6bec Binary files /dev/null and b/target/debug/build/zmq-bf842c488af81ca0/build-script-build differ diff --git a/target/debug/build/zmq-bf842c488af81ca0/build_script_build-bf842c488af81ca0 b/target/debug/build/zmq-bf842c488af81ca0/build_script_build-bf842c488af81ca0 new file mode 100644 index 0000000..d5e6bec Binary files /dev/null and b/target/debug/build/zmq-bf842c488af81ca0/build_script_build-bf842c488af81ca0 differ diff --git a/target/debug/build/zmq-bf842c488af81ca0/build_script_build-bf842c488af81ca0.d b/target/debug/build/zmq-bf842c488af81ca0/build_script_build-bf842c488af81ca0.d new file mode 100644 index 0000000..8eaae3a --- /dev/null +++ b/target/debug/build/zmq-bf842c488af81ca0/build_script_build-bf842c488af81ca0.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/zmq-bf842c488af81ca0/build_script_build-bf842c488af81ca0: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/build.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/zmq-bf842c488af81ca0/build_script_build-bf842c488af81ca0.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/build.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/build.rs: diff --git a/target/debug/build/zmq-sys-a71541d4e298393b/build-script-main b/target/debug/build/zmq-sys-a71541d4e298393b/build-script-main new file mode 100644 index 0000000..f37dfb3 Binary files /dev/null and b/target/debug/build/zmq-sys-a71541d4e298393b/build-script-main differ diff --git a/target/debug/build/zmq-sys-a71541d4e298393b/build_script_main-a71541d4e298393b b/target/debug/build/zmq-sys-a71541d4e298393b/build_script_main-a71541d4e298393b new file mode 100644 index 0000000..f37dfb3 Binary files /dev/null and b/target/debug/build/zmq-sys-a71541d4e298393b/build_script_main-a71541d4e298393b differ diff --git a/target/debug/build/zmq-sys-a71541d4e298393b/build_script_main-a71541d4e298393b.d b/target/debug/build/zmq-sys-a71541d4e298393b/build_script_main-a71541d4e298393b.d new file mode 100644 index 0000000..2431774 --- /dev/null +++ b/target/debug/build/zmq-sys-a71541d4e298393b/build_script_main-a71541d4e298393b.d @@ -0,0 +1,6 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/zmq-sys-a71541d4e298393b/build_script_main-a71541d4e298393b: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/build/main.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/build/pkg_config.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/zmq-sys-a71541d4e298393b/build_script_main-a71541d4e298393b.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/build/main.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/build/pkg_config.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/build/main.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/build/pkg_config.rs: diff --git a/target/release/build/indexmap-62d8e03465cfcdd6/invoked.timestamp b/target/debug/build/zmq-sys-b155e199dba518e5/invoked.timestamp similarity index 100% rename from target/release/build/indexmap-62d8e03465cfcdd6/invoked.timestamp rename to target/debug/build/zmq-sys-b155e199dba518e5/invoked.timestamp diff --git a/target/debug/build/zmq-sys-b155e199dba518e5/output b/target/debug/build/zmq-sys-b155e199dba518e5/output new file mode 100644 index 0000000..a1fc2ac --- /dev/null +++ b/target/debug/build/zmq-sys-b155e199dba518e5/output @@ -0,0 +1,43 @@ +cargo:rerun-if-env-changed=LIBZMQ_NO_PKG_CONFIG +cargo:rerun-if-env-changed=PKG_CONFIG +cargo:rerun-if-env-changed=LIBZMQ_STATIC +cargo:rerun-if-env-changed=LIBZMQ_DYNAMIC +cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC +cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC +cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH +cargo:rerun-if-env-changed=PKG_CONFIG_PATH +cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR +cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR +cargo:rerun-if-env-changed=SYSROOT +cargo:rerun-if-env-changed=LIBZMQ_STATIC +cargo:rerun-if-env-changed=LIBZMQ_DYNAMIC +cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC +cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC +cargo:rustc-link-search=native=/usr/lib +cargo:rustc-link-lib=zmq +cargo:rerun-if-env-changed=PKG_CONFIG +cargo:rerun-if-env-changed=LIBZMQ_STATIC +cargo:rerun-if-env-changed=LIBZMQ_DYNAMIC +cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC +cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC +cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH +cargo:rerun-if-env-changed=PKG_CONFIG_PATH +cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR +cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR diff --git a/target/release/build/serde-0e25c32ea550a82a/root-output b/target/debug/build/zmq-sys-b155e199dba518e5/root-output similarity index 60% rename from target/release/build/serde-0e25c32ea550a82a/root-output rename to target/debug/build/zmq-sys-b155e199dba518e5/root-output index ffcff46..b1963ee 100644 --- a/target/release/build/serde-0e25c32ea550a82a/root-output +++ b/target/debug/build/zmq-sys-b155e199dba518e5/root-output @@ -1 +1 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/serde-0e25c32ea550a82a/out \ No newline at end of file +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/build/zmq-sys-b155e199dba518e5/out \ No newline at end of file diff --git a/target/release/build/proc-macro-error-c851645ce98833f9/stderr b/target/debug/build/zmq-sys-b155e199dba518e5/stderr similarity index 100% rename from target/release/build/proc-macro-error-c851645ce98833f9/stderr rename to target/debug/build/zmq-sys-b155e199dba518e5/stderr diff --git a/target/release/deps/atty-762b111f8be85311.d b/target/debug/deps/atty-c2fde9dee18b37f1.d similarity index 51% rename from target/release/deps/atty-762b111f8be85311.d rename to target/debug/deps/atty-c2fde9dee18b37f1.d index 40246bc..99c40b3 100644 --- a/target/release/deps/atty-762b111f8be85311.d +++ b/target/debug/deps/atty-c2fde9dee18b37f1.d @@ -1,7 +1,7 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/atty-762b111f8be85311.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/src/lib.rs +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/atty-c2fde9dee18b37f1.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/src/lib.rs -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libatty-762b111f8be85311.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/src/lib.rs +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libatty-c2fde9dee18b37f1.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/src/lib.rs -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/atty-762b111f8be85311.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/src/lib.rs +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/atty-c2fde9dee18b37f1.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/src/lib.rs: diff --git a/target/debug/deps/clap-4a724467a41df761.d b/target/debug/deps/clap-4a724467a41df761.d new file mode 100644 index 0000000..2b75d8b --- /dev/null +++ b/target/debug/deps/clap-4a724467a41df761.d @@ -0,0 +1,39 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/clap-4a724467a41df761.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/derive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/debug_asserts.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/value_hint.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg_group.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/usage_parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/mkeymap.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/help.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/usage.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/fmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/errors.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/suggestions.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/arg_matcher.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/arg_matches.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/matched_arg.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/validator.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/argstr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/fnv.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/graph.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/id.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libclap-4a724467a41df761.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/derive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/debug_asserts.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/value_hint.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg_group.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/usage_parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/mkeymap.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/help.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/usage.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/fmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/errors.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/suggestions.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/arg_matcher.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/arg_matches.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/matched_arg.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/validator.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/argstr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/fnv.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/graph.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/id.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/clap-4a724467a41df761.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/derive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/debug_asserts.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/value_hint.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg_group.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/usage_parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/mkeymap.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/help.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/usage.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/fmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/errors.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/suggestions.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/arg_matcher.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/arg_matches.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/matched_arg.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/validator.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/argstr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/fnv.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/graph.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/id.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/lib.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/macros.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/derive.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/mod.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/macros.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/mod.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/debug_asserts.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/settings.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/mod.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/settings.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/value_hint.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg_group.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/usage_parser.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/mkeymap.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/mod.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/help.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/usage.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/fmt.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/mod.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/errors.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/mod.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/suggestions.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/arg_matcher.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/mod.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/arg_matches.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/matched_arg.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/parser.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/validator.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/mod.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/argstr.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/fnv.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/graph.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/id.rs: diff --git a/target/debug/deps/directories-54e89769184d2106.d b/target/debug/deps/directories-54e89769184d2106.d new file mode 100644 index 0000000..847008a --- /dev/null +++ b/target/debug/deps/directories-54e89769184d2106.d @@ -0,0 +1,8 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/directories-54e89769184d2106.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/directories-3.0.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/directories-3.0.1/src/lin.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libdirectories-54e89769184d2106.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/directories-3.0.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/directories-3.0.1/src/lin.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/directories-54e89769184d2106.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/directories-3.0.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/directories-3.0.1/src/lin.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/directories-3.0.1/src/lib.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/directories-3.0.1/src/lin.rs: diff --git a/target/debug/deps/dirs_sys-d07a5a7ba7cf70cd.d b/target/debug/deps/dirs_sys-d07a5a7ba7cf70cd.d new file mode 100644 index 0000000..9590935 --- /dev/null +++ b/target/debug/deps/dirs_sys-d07a5a7ba7cf70cd.d @@ -0,0 +1,8 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/dirs_sys-d07a5a7ba7cf70cd.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.5/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.5/src/xdg_user_dirs.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libdirs_sys-d07a5a7ba7cf70cd.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.5/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.5/src/xdg_user_dirs.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/dirs_sys-d07a5a7ba7cf70cd.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.5/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.5/src/xdg_user_dirs.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.5/src/lib.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.5/src/xdg_user_dirs.rs: diff --git a/target/debug/deps/error_chain-a309a28557f9e43e.d b/target/debug/deps/error_chain-a309a28557f9e43e.d new file mode 100644 index 0000000..d5a858d --- /dev/null +++ b/target/debug/deps/error_chain-a309a28557f9e43e.d @@ -0,0 +1,10 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/error_chain-a309a28557f9e43e.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/quick_error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/error_chain.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/quick_main.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/liberror_chain-a309a28557f9e43e.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/quick_error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/error_chain.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/quick_main.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/error_chain-a309a28557f9e43e.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/quick_error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/error_chain.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/quick_main.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/quick_error.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/error_chain.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/quick_main.rs: diff --git a/target/debug/deps/igloo-4810a9cc2c013b08.d b/target/debug/deps/igloo-4810a9cc2c013b08.d new file mode 100644 index 0000000..a844f80 --- /dev/null +++ b/target/debug/deps/igloo-4810a9cc2c013b08.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo-4810a9cc2c013b08: src/main.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo-4810a9cc2c013b08.d: src/main.rs + +src/main.rs: diff --git a/target/debug/deps/igloo-6c5e487114b79d00.d b/target/debug/deps/igloo-6c5e487114b79d00.d index 9000793..011f130 100644 --- a/target/debug/deps/igloo-6c5e487114b79d00.d +++ b/target/debug/deps/igloo-6c5e487114b79d00.d @@ -7,6 +7,3 @@ src/igloo.rs: src/igloo_action.rs: src/igloo_prj.rs: src/igloo_manifest.rs: - -# env-dep:CARGO_PKG_DESCRIPTION=Igloo is a package and project manager. It is used for bare metal (for now only bare metal) embedded systems. In the embedded world, there is a big gap between how one would write code for embedded systems between manufacturers. As of today, 7/2/20, there is really no easy way to go about writing code for any embedded system from scratch. Most of the time, you need to download headers from some unknown location, figure out your hardware interface, find the proper toolchain, etc. This forces embedded developers and engineers to spend a lot of unnecessary time on DevOps and less time on firmware engineering. Igloo aims to solve this problem. Igloo is in its early stages of development. -# env-dep:CARGO_PKG_VERSION=0.1.0 diff --git a/target/debug/deps/igloo-c3815f38cba6a4c3 b/target/debug/deps/igloo-c3815f38cba6a4c3 index 99b2b4c..1f2393f 100644 Binary files a/target/debug/deps/igloo-c3815f38cba6a4c3 and b/target/debug/deps/igloo-c3815f38cba6a4c3 differ diff --git a/target/release/build/memchr-3df2d04dc68b3e7b/build_script_build-3df2d04dc68b3e7b b/target/debug/deps/igloo_agent-13fafdf811f4c142 similarity index 52% rename from target/release/build/memchr-3df2d04dc68b3e7b/build_script_build-3df2d04dc68b3e7b rename to target/debug/deps/igloo_agent-13fafdf811f4c142 index 2d019b9..fad6c6d 100644 Binary files a/target/release/build/memchr-3df2d04dc68b3e7b/build_script_build-3df2d04dc68b3e7b and b/target/debug/deps/igloo_agent-13fafdf811f4c142 differ diff --git a/target/debug/deps/igloo_agent-13fafdf811f4c142.d b/target/debug/deps/igloo_agent-13fafdf811f4c142.d new file mode 100644 index 0000000..5e39a59 --- /dev/null +++ b/target/debug/deps/igloo_agent-13fafdf811f4c142.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-13fafdf811f4c142: igloo_agent/src/main.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-13fafdf811f4c142.d: igloo_agent/src/main.rs + +igloo_agent/src/main.rs: diff --git a/target/release/build/lexical-core-3f76a674b0092248/build-script-build b/target/debug/deps/igloo_agent-74ad8daf82f6a0cf similarity index 54% rename from target/release/build/lexical-core-3f76a674b0092248/build-script-build rename to target/debug/deps/igloo_agent-74ad8daf82f6a0cf index 746ae7b..3838788 100644 Binary files a/target/release/build/lexical-core-3f76a674b0092248/build-script-build and b/target/debug/deps/igloo_agent-74ad8daf82f6a0cf differ diff --git a/target/debug/deps/igloo_agent-74ad8daf82f6a0cf.d b/target/debug/deps/igloo_agent-74ad8daf82f6a0cf.d new file mode 100644 index 0000000..ea35055 --- /dev/null +++ b/target/debug/deps/igloo_agent-74ad8daf82f6a0cf.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-74ad8daf82f6a0cf: igloo_agent/src/main.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-74ad8daf82f6a0cf.d: igloo_agent/src/main.rs + +igloo_agent/src/main.rs: diff --git a/target/debug/deps/igloo_agent-85ab39ded87fe90f b/target/debug/deps/igloo_agent-85ab39ded87fe90f new file mode 100644 index 0000000..87c064e Binary files /dev/null and b/target/debug/deps/igloo_agent-85ab39ded87fe90f differ diff --git a/target/debug/deps/igloo_agent-85ab39ded87fe90f.d b/target/debug/deps/igloo_agent-85ab39ded87fe90f.d new file mode 100644 index 0000000..4ca669d --- /dev/null +++ b/target/debug/deps/igloo_agent-85ab39ded87fe90f.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-85ab39ded87fe90f: igloo_agent/src/main.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-85ab39ded87fe90f.d: igloo_agent/src/main.rs + +igloo_agent/src/main.rs: diff --git a/target/debug/deps/igloo_agent-9326ff99a6a12f9b b/target/debug/deps/igloo_agent-9326ff99a6a12f9b new file mode 100644 index 0000000..6b95ecb Binary files /dev/null and b/target/debug/deps/igloo_agent-9326ff99a6a12f9b differ diff --git a/target/debug/deps/igloo_agent-9326ff99a6a12f9b.d b/target/debug/deps/igloo_agent-9326ff99a6a12f9b.d new file mode 100644 index 0000000..84b8747 --- /dev/null +++ b/target/debug/deps/igloo_agent-9326ff99a6a12f9b.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-9326ff99a6a12f9b: igloo_agent/src/main.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-9326ff99a6a12f9b.d: igloo_agent/src/main.rs + +igloo_agent/src/main.rs: diff --git a/target/release/build/lexical-core-3f76a674b0092248/build_script_build-3f76a674b0092248 b/target/debug/deps/igloo_agent-b4311263192e6456 similarity index 54% rename from target/release/build/lexical-core-3f76a674b0092248/build_script_build-3f76a674b0092248 rename to target/debug/deps/igloo_agent-b4311263192e6456 index 746ae7b..c90803e 100644 Binary files a/target/release/build/lexical-core-3f76a674b0092248/build_script_build-3f76a674b0092248 and b/target/debug/deps/igloo_agent-b4311263192e6456 differ diff --git a/target/debug/deps/igloo_agent-b4311263192e6456.d b/target/debug/deps/igloo_agent-b4311263192e6456.d new file mode 100644 index 0000000..f81c469 --- /dev/null +++ b/target/debug/deps/igloo_agent-b4311263192e6456.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-b4311263192e6456: igloo-agent/src/main.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-b4311263192e6456.d: igloo-agent/src/main.rs + +igloo-agent/src/main.rs: diff --git a/target/debug/deps/igloo_agent-c5af17c475f537b5 b/target/debug/deps/igloo_agent-c5af17c475f537b5 new file mode 100644 index 0000000..8f3316c Binary files /dev/null and b/target/debug/deps/igloo_agent-c5af17c475f537b5 differ diff --git a/target/debug/deps/igloo_agent-c5af17c475f537b5.d b/target/debug/deps/igloo_agent-c5af17c475f537b5.d new file mode 100644 index 0000000..5a646c8 --- /dev/null +++ b/target/debug/deps/igloo_agent-c5af17c475f537b5.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-c5af17c475f537b5: igloo-agent/src/main.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_agent-c5af17c475f537b5.d: igloo-agent/src/main.rs + +igloo-agent/src/main.rs: diff --git a/target/debug/deps/igloo_base-25c3b6ee9fcb590f.d b/target/debug/deps/igloo_base-25c3b6ee9fcb590f.d new file mode 100644 index 0000000..843843a --- /dev/null +++ b/target/debug/deps/igloo_base-25c3b6ee9fcb590f.d @@ -0,0 +1,8 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_base-25c3b6ee9fcb590f.rmeta: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_base-25c3b6ee9fcb590f.rlib: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_base-25c3b6ee9fcb590f.d: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +igloo_base/src/lib.rs: +igloo_base/src/env_info.rs: diff --git a/target/debug/deps/igloo_base-aaf8b629d35fee84 b/target/debug/deps/igloo_base-aaf8b629d35fee84 new file mode 100644 index 0000000..7e77199 Binary files /dev/null and b/target/debug/deps/igloo_base-aaf8b629d35fee84 differ diff --git a/target/debug/deps/igloo_base-aaf8b629d35fee84.d b/target/debug/deps/igloo_base-aaf8b629d35fee84.d new file mode 100644 index 0000000..8041e15 --- /dev/null +++ b/target/debug/deps/igloo_base-aaf8b629d35fee84.d @@ -0,0 +1,6 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_base-aaf8b629d35fee84: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_base-aaf8b629d35fee84.d: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +igloo_base/src/lib.rs: +igloo_base/src/env_info.rs: diff --git a/target/debug/deps/igloo_base-caeed73d1e0aeb1e b/target/debug/deps/igloo_base-caeed73d1e0aeb1e new file mode 100644 index 0000000..f40087b Binary files /dev/null and b/target/debug/deps/igloo_base-caeed73d1e0aeb1e differ diff --git a/target/debug/deps/igloo_base-caeed73d1e0aeb1e.d b/target/debug/deps/igloo_base-caeed73d1e0aeb1e.d new file mode 100644 index 0000000..34ff285 --- /dev/null +++ b/target/debug/deps/igloo_base-caeed73d1e0aeb1e.d @@ -0,0 +1,6 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_base-caeed73d1e0aeb1e: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_base-caeed73d1e0aeb1e.d: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +igloo_base/src/lib.rs: +igloo_base/src/env_info.rs: diff --git a/target/debug/deps/igloo_base-d7210f9309a81679.d b/target/debug/deps/igloo_base-d7210f9309a81679.d new file mode 100644 index 0000000..db7a7bb --- /dev/null +++ b/target/debug/deps/igloo_base-d7210f9309a81679.d @@ -0,0 +1,8 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_base-d7210f9309a81679.rmeta: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_base-d7210f9309a81679.rlib: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_base-d7210f9309a81679.d: igloo_base/src/lib.rs igloo_base/src/env_info.rs + +igloo_base/src/lib.rs: +igloo_base/src/env_info.rs: diff --git a/target/debug/deps/igloo_cli-0d12a2aa1929e66e b/target/debug/deps/igloo_cli-0d12a2aa1929e66e new file mode 100644 index 0000000..c1da562 Binary files /dev/null and b/target/debug/deps/igloo_cli-0d12a2aa1929e66e differ diff --git a/target/debug/deps/igloo_cli-0d12a2aa1929e66e.d b/target/debug/deps/igloo_cli-0d12a2aa1929e66e.d new file mode 100644 index 0000000..4c05b0f --- /dev/null +++ b/target/debug/deps/igloo_cli-0d12a2aa1929e66e.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-0d12a2aa1929e66e: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-0d12a2aa1929e66e.d: igloo_cli/src/lib.rs + +igloo_cli/src/lib.rs: diff --git a/target/debug/deps/igloo_cli-0d441a52fb704bbe.d b/target/debug/deps/igloo_cli-0d441a52fb704bbe.d new file mode 100644 index 0000000..b4571ff --- /dev/null +++ b/target/debug/deps/igloo_cli-0d441a52fb704bbe.d @@ -0,0 +1,10 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-0d441a52fb704bbe.rmeta: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_cli-0d441a52fb704bbe.rlib: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-0d441a52fb704bbe.d: igloo_cli/src/lib.rs + +igloo_cli/src/lib.rs: + +# env-dep:CARGO_PKG_DESCRIPTION= +# env-dep:CARGO_PKG_VERSION=0.1.0 diff --git a/target/debug/deps/igloo_cli-11e55e777474678b.d b/target/debug/deps/igloo_cli-11e55e777474678b.d new file mode 100644 index 0000000..db3eb34 --- /dev/null +++ b/target/debug/deps/igloo_cli-11e55e777474678b.d @@ -0,0 +1,10 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-11e55e777474678b.rmeta: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_cli-11e55e777474678b.rlib: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-11e55e777474678b.d: igloo_cli/src/lib.rs + +igloo_cli/src/lib.rs: + +# env-dep:CARGO_PKG_DESCRIPTION= +# env-dep:CARGO_PKG_VERSION=0.1.0 diff --git a/target/debug/deps/igloo_cli-1b8328b5a881ab78.d b/target/debug/deps/igloo_cli-1b8328b5a881ab78.d new file mode 100644 index 0000000..f6c0773 --- /dev/null +++ b/target/debug/deps/igloo_cli-1b8328b5a881ab78.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-1b8328b5a881ab78.rmeta: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_cli-1b8328b5a881ab78.rlib: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-1b8328b5a881ab78.d: igloo_cli/src/lib.rs + +igloo_cli/src/lib.rs: diff --git a/target/debug/deps/igloo_cli-4de5ad14e47bd878.d b/target/debug/deps/igloo_cli-4de5ad14e47bd878.d new file mode 100644 index 0000000..6c3dde7 --- /dev/null +++ b/target/debug/deps/igloo_cli-4de5ad14e47bd878.d @@ -0,0 +1,10 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-4de5ad14e47bd878.rmeta: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_cli-4de5ad14e47bd878.rlib: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-4de5ad14e47bd878.d: igloo_cli/src/lib.rs + +igloo_cli/src/lib.rs: + +# env-dep:CARGO_PKG_DESCRIPTION= +# env-dep:CARGO_PKG_VERSION=0.1.0 diff --git a/target/debug/deps/igloo_cli-4fb621101fa793e7.d b/target/debug/deps/igloo_cli-4fb621101fa793e7.d new file mode 100644 index 0000000..d95932c --- /dev/null +++ b/target/debug/deps/igloo_cli-4fb621101fa793e7.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-4fb621101fa793e7.rmeta: igloo-cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_cli-4fb621101fa793e7.rlib: igloo-cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-4fb621101fa793e7.d: igloo-cli/src/lib.rs + +igloo-cli/src/lib.rs: diff --git a/target/debug/deps/igloo_cli-74f5cf462b8c4f61 b/target/debug/deps/igloo_cli-74f5cf462b8c4f61 new file mode 100644 index 0000000..748d427 Binary files /dev/null and b/target/debug/deps/igloo_cli-74f5cf462b8c4f61 differ diff --git a/target/debug/deps/igloo_cli-74f5cf462b8c4f61.d b/target/debug/deps/igloo_cli-74f5cf462b8c4f61.d new file mode 100644 index 0000000..a8c3736 --- /dev/null +++ b/target/debug/deps/igloo_cli-74f5cf462b8c4f61.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-74f5cf462b8c4f61: igloo-cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-74f5cf462b8c4f61.d: igloo-cli/src/lib.rs + +igloo-cli/src/lib.rs: diff --git a/target/debug/deps/igloo_cli-9b992448710f0685 b/target/debug/deps/igloo_cli-9b992448710f0685 new file mode 100644 index 0000000..76bb924 Binary files /dev/null and b/target/debug/deps/igloo_cli-9b992448710f0685 differ diff --git a/target/debug/deps/igloo_cli-9b992448710f0685.d b/target/debug/deps/igloo_cli-9b992448710f0685.d new file mode 100644 index 0000000..7d0ba70 --- /dev/null +++ b/target/debug/deps/igloo_cli-9b992448710f0685.d @@ -0,0 +1,8 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-9b992448710f0685: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-9b992448710f0685.d: igloo_cli/src/lib.rs + +igloo_cli/src/lib.rs: + +# env-dep:CARGO_PKG_DESCRIPTION= +# env-dep:CARGO_PKG_VERSION=0.1.0 diff --git a/target/debug/deps/igloo_cli-cf1e600c6bef04e4 b/target/debug/deps/igloo_cli-cf1e600c6bef04e4 new file mode 100644 index 0000000..30b7be1 Binary files /dev/null and b/target/debug/deps/igloo_cli-cf1e600c6bef04e4 differ diff --git a/target/debug/deps/igloo_cli-cf1e600c6bef04e4.d b/target/debug/deps/igloo_cli-cf1e600c6bef04e4.d new file mode 100644 index 0000000..60b7839 --- /dev/null +++ b/target/debug/deps/igloo_cli-cf1e600c6bef04e4.d @@ -0,0 +1,8 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-cf1e600c6bef04e4: igloo_cli/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_cli-cf1e600c6bef04e4.d: igloo_cli/src/lib.rs + +igloo_cli/src/lib.rs: + +# env-dep:CARGO_PKG_DESCRIPTION= +# env-dep:CARGO_PKG_VERSION=0.1.0 diff --git a/target/debug/deps/igloo_core-02240a23c67e1f6b.d b/target/debug/deps/igloo_core-02240a23c67e1f6b.d new file mode 100644 index 0000000..245f4cd --- /dev/null +++ b/target/debug/deps/igloo_core-02240a23c67e1f6b.d @@ -0,0 +1,10 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-02240a23c67e1f6b.rmeta: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_core-02240a23c67e1f6b.rlib: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-02240a23c67e1f6b.d: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +igloo_core/src/lib.rs: +igloo_core/src/igloo_action.rs: +igloo_core/src/igloo_project.rs: +igloo_core/src/igloo_target.rs: diff --git a/target/debug/deps/igloo_core-17a783c5c2ef1510.d b/target/debug/deps/igloo_core-17a783c5c2ef1510.d new file mode 100644 index 0000000..545b493 --- /dev/null +++ b/target/debug/deps/igloo_core-17a783c5c2ef1510.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-17a783c5c2ef1510: igloo_core/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-17a783c5c2ef1510.d: igloo_core/src/lib.rs + +igloo_core/src/lib.rs: diff --git a/target/debug/deps/igloo_core-200494adb085d67c.d b/target/debug/deps/igloo_core-200494adb085d67c.d new file mode 100644 index 0000000..bde623d --- /dev/null +++ b/target/debug/deps/igloo_core-200494adb085d67c.d @@ -0,0 +1,10 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-200494adb085d67c.rmeta: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_core-200494adb085d67c.rlib: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-200494adb085d67c.d: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +igloo_core/src/lib.rs: +igloo_core/src/igloo_action.rs: +igloo_core/src/igloo_project.rs: +igloo_core/src/igloo_target.rs: diff --git a/target/debug/deps/igloo_core-47b1337f5ca5972c.d b/target/debug/deps/igloo_core-47b1337f5ca5972c.d new file mode 100644 index 0000000..ef0172a --- /dev/null +++ b/target/debug/deps/igloo_core-47b1337f5ca5972c.d @@ -0,0 +1,8 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-47b1337f5ca5972c.rmeta: igloo_core/src/lib.rs igloo_core/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_core-47b1337f5ca5972c.rlib: igloo_core/src/lib.rs igloo_core/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-47b1337f5ca5972c.d: igloo_core/src/lib.rs igloo_core/src/env_info.rs + +igloo_core/src/lib.rs: +igloo_core/src/env_info.rs: diff --git a/target/debug/deps/igloo_core-5e6b4a4d28835145.d b/target/debug/deps/igloo_core-5e6b4a4d28835145.d new file mode 100644 index 0000000..9617dc9 --- /dev/null +++ b/target/debug/deps/igloo_core-5e6b4a4d28835145.d @@ -0,0 +1,8 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-5e6b4a4d28835145: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-5e6b4a4d28835145.d: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +igloo_core/src/lib.rs: +igloo_core/src/igloo_action.rs: +igloo_core/src/igloo_project.rs: +igloo_core/src/igloo_target.rs: diff --git a/target/debug/deps/igloo_core-62cf6b6961d79de2.d b/target/debug/deps/igloo_core-62cf6b6961d79de2.d new file mode 100644 index 0000000..d7699fb --- /dev/null +++ b/target/debug/deps/igloo_core-62cf6b6961d79de2.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-62cf6b6961d79de2.rmeta: igloo-core/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_core-62cf6b6961d79de2.rlib: igloo-core/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-62cf6b6961d79de2.d: igloo-core/src/lib.rs + +igloo-core/src/lib.rs: diff --git a/target/debug/deps/igloo_core-641f6ae036aa1aa6 b/target/debug/deps/igloo_core-641f6ae036aa1aa6 new file mode 100644 index 0000000..358b751 Binary files /dev/null and b/target/debug/deps/igloo_core-641f6ae036aa1aa6 differ diff --git a/target/debug/deps/igloo_core-641f6ae036aa1aa6.d b/target/debug/deps/igloo_core-641f6ae036aa1aa6.d new file mode 100644 index 0000000..7290059 --- /dev/null +++ b/target/debug/deps/igloo_core-641f6ae036aa1aa6.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-641f6ae036aa1aa6: igloo-core/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-641f6ae036aa1aa6.d: igloo-core/src/lib.rs + +igloo-core/src/lib.rs: diff --git a/target/debug/deps/igloo_core-6f5c68f37e3aea30 b/target/debug/deps/igloo_core-6f5c68f37e3aea30 new file mode 100644 index 0000000..4250946 Binary files /dev/null and b/target/debug/deps/igloo_core-6f5c68f37e3aea30 differ diff --git a/target/debug/deps/igloo_core-6f5c68f37e3aea30.d b/target/debug/deps/igloo_core-6f5c68f37e3aea30.d new file mode 100644 index 0000000..bfc0e37 --- /dev/null +++ b/target/debug/deps/igloo_core-6f5c68f37e3aea30.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-6f5c68f37e3aea30: igloo_core/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-6f5c68f37e3aea30.d: igloo_core/src/lib.rs + +igloo_core/src/lib.rs: diff --git a/target/debug/deps/igloo_core-7bdc6f016fec94ba.d b/target/debug/deps/igloo_core-7bdc6f016fec94ba.d new file mode 100644 index 0000000..a0ae300 --- /dev/null +++ b/target/debug/deps/igloo_core-7bdc6f016fec94ba.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-7bdc6f016fec94ba.rmeta: igloo_core/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_core-7bdc6f016fec94ba.rlib: igloo_core/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-7bdc6f016fec94ba.d: igloo_core/src/lib.rs + +igloo_core/src/lib.rs: diff --git a/target/debug/deps/igloo_core-7ccf6625cc2d6914.d b/target/debug/deps/igloo_core-7ccf6625cc2d6914.d new file mode 100644 index 0000000..cc9a446 --- /dev/null +++ b/target/debug/deps/igloo_core-7ccf6625cc2d6914.d @@ -0,0 +1,6 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-7ccf6625cc2d6914: igloo_core/src/lib.rs igloo_core/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-7ccf6625cc2d6914.d: igloo_core/src/lib.rs igloo_core/src/env_info.rs + +igloo_core/src/lib.rs: +igloo_core/src/env_info.rs: diff --git a/target/debug/deps/igloo_core-8714d731dfaed1a5.d b/target/debug/deps/igloo_core-8714d731dfaed1a5.d new file mode 100644 index 0000000..314719c --- /dev/null +++ b/target/debug/deps/igloo_core-8714d731dfaed1a5.d @@ -0,0 +1,6 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-8714d731dfaed1a5: igloo_core/src/lib.rs igloo_core/src/env_info.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-8714d731dfaed1a5.d: igloo_core/src/lib.rs igloo_core/src/env_info.rs + +igloo_core/src/lib.rs: +igloo_core/src/env_info.rs: diff --git a/target/debug/deps/igloo_core-9b16be702b6646fa b/target/debug/deps/igloo_core-9b16be702b6646fa new file mode 100644 index 0000000..dd360ed Binary files /dev/null and b/target/debug/deps/igloo_core-9b16be702b6646fa differ diff --git a/target/debug/deps/igloo_core-9b16be702b6646fa.d b/target/debug/deps/igloo_core-9b16be702b6646fa.d new file mode 100644 index 0000000..49035a1 --- /dev/null +++ b/target/debug/deps/igloo_core-9b16be702b6646fa.d @@ -0,0 +1,8 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-9b16be702b6646fa: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-9b16be702b6646fa.d: igloo_core/src/lib.rs igloo_core/src/igloo_action.rs igloo_core/src/igloo_project.rs igloo_core/src/igloo_target.rs + +igloo_core/src/lib.rs: +igloo_core/src/igloo_action.rs: +igloo_core/src/igloo_project.rs: +igloo_core/src/igloo_target.rs: diff --git a/target/debug/deps/igloo_core-ec0c3849bc9b6e69.d b/target/debug/deps/igloo_core-ec0c3849bc9b6e69.d new file mode 100644 index 0000000..3843df9 --- /dev/null +++ b/target/debug/deps/igloo_core-ec0c3849bc9b6e69.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-ec0c3849bc9b6e69.rmeta: igloo_core/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_core-ec0c3849bc9b6e69.rlib: igloo_core/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_core-ec0c3849bc9b6e69.d: igloo_core/src/lib.rs + +igloo_core/src/lib.rs: diff --git a/target/debug/deps/igloo_make-0cbf3151236bd682.d b/target/debug/deps/igloo_make-0cbf3151236bd682.d new file mode 100644 index 0000000..d9d28c8 --- /dev/null +++ b/target/debug/deps/igloo_make-0cbf3151236bd682.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_make-0cbf3151236bd682.rmeta: igloo_make/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_make-0cbf3151236bd682.rlib: igloo_make/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_make-0cbf3151236bd682.d: igloo_make/src/lib.rs + +igloo_make/src/lib.rs: diff --git a/target/debug/deps/igloo_make-239f78effa14aa21.d b/target/debug/deps/igloo_make-239f78effa14aa21.d new file mode 100644 index 0000000..7eb5004 --- /dev/null +++ b/target/debug/deps/igloo_make-239f78effa14aa21.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_make-239f78effa14aa21.rmeta: igloo_make/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_make-239f78effa14aa21.rlib: igloo_make/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_make-239f78effa14aa21.d: igloo_make/src/lib.rs + +igloo_make/src/lib.rs: diff --git a/target/debug/deps/igloo_make-a466ea6e7942b350 b/target/debug/deps/igloo_make-a466ea6e7942b350 new file mode 100644 index 0000000..5eb3ea1 Binary files /dev/null and b/target/debug/deps/igloo_make-a466ea6e7942b350 differ diff --git a/target/debug/deps/igloo_make-a466ea6e7942b350.d b/target/debug/deps/igloo_make-a466ea6e7942b350.d new file mode 100644 index 0000000..abcedcb --- /dev/null +++ b/target/debug/deps/igloo_make-a466ea6e7942b350.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_make-a466ea6e7942b350: igloo_make/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_make-a466ea6e7942b350.d: igloo_make/src/lib.rs + +igloo_make/src/lib.rs: diff --git a/target/debug/deps/igloo_make-dd7b268c3cb7b045.d b/target/debug/deps/igloo_make-dd7b268c3cb7b045.d new file mode 100644 index 0000000..4af66c7 --- /dev/null +++ b/target/debug/deps/igloo_make-dd7b268c3cb7b045.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_make-dd7b268c3cb7b045.rmeta: igloo_make/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_make-dd7b268c3cb7b045.rlib: igloo_make/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_make-dd7b268c3cb7b045.d: igloo_make/src/lib.rs + +igloo_make/src/lib.rs: diff --git a/target/debug/deps/igloo_manifest-453ed4ed681afba2 b/target/debug/deps/igloo_manifest-453ed4ed681afba2 new file mode 100644 index 0000000..58179ab Binary files /dev/null and b/target/debug/deps/igloo_manifest-453ed4ed681afba2 differ diff --git a/target/debug/deps/igloo_manifest-453ed4ed681afba2.d b/target/debug/deps/igloo_manifest-453ed4ed681afba2.d new file mode 100644 index 0000000..3bc836d --- /dev/null +++ b/target/debug/deps/igloo_manifest-453ed4ed681afba2.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-453ed4ed681afba2: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-453ed4ed681afba2.d: igloo_manifest/src/lib.rs + +igloo_manifest/src/lib.rs: diff --git a/target/debug/deps/igloo_manifest-5a9f24e596f26acb.d b/target/debug/deps/igloo_manifest-5a9f24e596f26acb.d new file mode 100644 index 0000000..f3e140f --- /dev/null +++ b/target/debug/deps/igloo_manifest-5a9f24e596f26acb.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-5a9f24e596f26acb.rmeta: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_manifest-5a9f24e596f26acb.rlib: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-5a9f24e596f26acb.d: igloo_manifest/src/lib.rs + +igloo_manifest/src/lib.rs: diff --git a/target/debug/deps/igloo_manifest-613ec588668bcb21.d b/target/debug/deps/igloo_manifest-613ec588668bcb21.d new file mode 100644 index 0000000..e8301f1 --- /dev/null +++ b/target/debug/deps/igloo_manifest-613ec588668bcb21.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-613ec588668bcb21: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-613ec588668bcb21.d: igloo_manifest/src/lib.rs + +igloo_manifest/src/lib.rs: diff --git a/target/debug/deps/igloo_manifest-a5e590f406b32424.d b/target/debug/deps/igloo_manifest-a5e590f406b32424.d new file mode 100644 index 0000000..4ddee93 --- /dev/null +++ b/target/debug/deps/igloo_manifest-a5e590f406b32424.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-a5e590f406b32424.rmeta: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_manifest-a5e590f406b32424.rlib: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-a5e590f406b32424.d: igloo_manifest/src/lib.rs + +igloo_manifest/src/lib.rs: diff --git a/target/debug/deps/igloo_manifest-a898a4bcc05e7545.d b/target/debug/deps/igloo_manifest-a898a4bcc05e7545.d new file mode 100644 index 0000000..76eec40 --- /dev/null +++ b/target/debug/deps/igloo_manifest-a898a4bcc05e7545.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-a898a4bcc05e7545.rmeta: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_manifest-a898a4bcc05e7545.rlib: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-a898a4bcc05e7545.d: igloo_manifest/src/lib.rs + +igloo_manifest/src/lib.rs: diff --git a/target/debug/deps/igloo_manifest-adeea1a769817567.d b/target/debug/deps/igloo_manifest-adeea1a769817567.d new file mode 100644 index 0000000..5a5935f --- /dev/null +++ b/target/debug/deps/igloo_manifest-adeea1a769817567.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-adeea1a769817567.rmeta: igloo-manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_manifest-adeea1a769817567.rlib: igloo-manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-adeea1a769817567.d: igloo-manifest/src/lib.rs + +igloo-manifest/src/lib.rs: diff --git a/target/debug/deps/igloo_manifest-c8af8e41b315e052 b/target/debug/deps/igloo_manifest-c8af8e41b315e052 new file mode 100644 index 0000000..0288a6e Binary files /dev/null and b/target/debug/deps/igloo_manifest-c8af8e41b315e052 differ diff --git a/target/debug/deps/igloo_manifest-c8af8e41b315e052.d b/target/debug/deps/igloo_manifest-c8af8e41b315e052.d new file mode 100644 index 0000000..29f3b26 --- /dev/null +++ b/target/debug/deps/igloo_manifest-c8af8e41b315e052.d @@ -0,0 +1,5 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-c8af8e41b315e052: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-c8af8e41b315e052.d: igloo_manifest/src/lib.rs + +igloo_manifest/src/lib.rs: diff --git a/target/debug/deps/igloo_manifest-d3b77ad10ba9545a.d b/target/debug/deps/igloo_manifest-d3b77ad10ba9545a.d new file mode 100644 index 0000000..3150805 --- /dev/null +++ b/target/debug/deps/igloo_manifest-d3b77ad10ba9545a.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-d3b77ad10ba9545a.rmeta: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libigloo_manifest-d3b77ad10ba9545a.rlib: igloo_manifest/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/igloo_manifest-d3b77ad10ba9545a.d: igloo_manifest/src/lib.rs + +igloo_manifest/src/lib.rs: diff --git a/target/debug/deps/libatty-c2fde9dee18b37f1.rlib b/target/debug/deps/libatty-c2fde9dee18b37f1.rlib new file mode 100644 index 0000000..551f559 Binary files /dev/null and b/target/debug/deps/libatty-c2fde9dee18b37f1.rlib differ diff --git a/target/debug/deps/libatty-c2fde9dee18b37f1.rmeta b/target/debug/deps/libatty-c2fde9dee18b37f1.rmeta new file mode 100644 index 0000000..0dd1bd2 Binary files /dev/null and b/target/debug/deps/libatty-c2fde9dee18b37f1.rmeta differ diff --git a/target/release/deps/libc-ff0f9ac8c11c1dbe.d b/target/debug/deps/libc-7753addeb8e632c3.d similarity index 53% rename from target/release/deps/libc-ff0f9ac8c11c1dbe.d rename to target/debug/deps/libc-7753addeb8e632c3.d index d19d9e1..6eb68b2 100644 --- a/target/release/deps/libc-ff0f9ac8c11c1dbe.d +++ b/target/debug/deps/libc-7753addeb8e632c3.d @@ -1,8 +1,8 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libc-ff0f9ac8c11c1dbe.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/fixed_width_ints.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/align.rs +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libc-7753addeb8e632c3.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/fixed_width_ints.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/align.rs -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/liblibc-ff0f9ac8c11c1dbe.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/fixed_width_ints.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/align.rs +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/liblibc-7753addeb8e632c3.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/fixed_width_ints.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/align.rs -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libc-ff0f9ac8c11c1dbe.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/fixed_width_ints.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/align.rs +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libc-7753addeb8e632c3.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/fixed_width_ints.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/gnu/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/linux_like/linux/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/unix/align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/lib.rs: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/src/macros.rs: diff --git a/target/release/deps/libclap_derive-2f0d8a47419feb4d.so b/target/debug/deps/libclap-4a724467a41df761.rlib similarity index 50% rename from target/release/deps/libclap_derive-2f0d8a47419feb4d.so rename to target/debug/deps/libclap-4a724467a41df761.rlib index 317f6a6..380374e 100644 Binary files a/target/release/deps/libclap_derive-2f0d8a47419feb4d.so and b/target/debug/deps/libclap-4a724467a41df761.rlib differ diff --git a/target/debug/deps/libclap-4a724467a41df761.rmeta b/target/debug/deps/libclap-4a724467a41df761.rmeta new file mode 100644 index 0000000..1b2b5e7 Binary files /dev/null and b/target/debug/deps/libclap-4a724467a41df761.rmeta differ diff --git a/target/debug/deps/libdirectories-54e89769184d2106.rlib b/target/debug/deps/libdirectories-54e89769184d2106.rlib new file mode 100644 index 0000000..0e461fc Binary files /dev/null and b/target/debug/deps/libdirectories-54e89769184d2106.rlib differ diff --git a/target/debug/deps/libdirectories-54e89769184d2106.rmeta b/target/debug/deps/libdirectories-54e89769184d2106.rmeta new file mode 100644 index 0000000..560824c Binary files /dev/null and b/target/debug/deps/libdirectories-54e89769184d2106.rmeta differ diff --git a/target/debug/deps/libdirs_sys-d07a5a7ba7cf70cd.rlib b/target/debug/deps/libdirs_sys-d07a5a7ba7cf70cd.rlib new file mode 100644 index 0000000..371015a Binary files /dev/null and b/target/debug/deps/libdirs_sys-d07a5a7ba7cf70cd.rlib differ diff --git a/target/debug/deps/libdirs_sys-d07a5a7ba7cf70cd.rmeta b/target/debug/deps/libdirs_sys-d07a5a7ba7cf70cd.rmeta new file mode 100644 index 0000000..f98efc8 Binary files /dev/null and b/target/debug/deps/libdirs_sys-d07a5a7ba7cf70cd.rmeta differ diff --git a/target/debug/deps/liberror_chain-a309a28557f9e43e.rlib b/target/debug/deps/liberror_chain-a309a28557f9e43e.rlib new file mode 100644 index 0000000..fb25676 Binary files /dev/null and b/target/debug/deps/liberror_chain-a309a28557f9e43e.rlib differ diff --git a/target/debug/deps/liberror_chain-a309a28557f9e43e.rmeta b/target/debug/deps/liberror_chain-a309a28557f9e43e.rmeta new file mode 100644 index 0000000..51f5463 Binary files /dev/null and b/target/debug/deps/liberror_chain-a309a28557f9e43e.rmeta differ diff --git a/target/debug/deps/libigloo_base-25c3b6ee9fcb590f.rlib b/target/debug/deps/libigloo_base-25c3b6ee9fcb590f.rlib new file mode 100644 index 0000000..84597f8 Binary files /dev/null and b/target/debug/deps/libigloo_base-25c3b6ee9fcb590f.rlib differ diff --git a/target/debug/deps/libigloo_base-25c3b6ee9fcb590f.rmeta b/target/debug/deps/libigloo_base-25c3b6ee9fcb590f.rmeta new file mode 100644 index 0000000..87551de Binary files /dev/null and b/target/debug/deps/libigloo_base-25c3b6ee9fcb590f.rmeta differ diff --git a/target/debug/deps/libigloo_base-d7210f9309a81679.rlib b/target/debug/deps/libigloo_base-d7210f9309a81679.rlib new file mode 100644 index 0000000..720ea9e Binary files /dev/null and b/target/debug/deps/libigloo_base-d7210f9309a81679.rlib differ diff --git a/target/debug/deps/libigloo_base-d7210f9309a81679.rmeta b/target/debug/deps/libigloo_base-d7210f9309a81679.rmeta new file mode 100644 index 0000000..ece0b65 Binary files /dev/null and b/target/debug/deps/libigloo_base-d7210f9309a81679.rmeta differ diff --git a/target/debug/deps/libigloo_cli-0d441a52fb704bbe.rlib b/target/debug/deps/libigloo_cli-0d441a52fb704bbe.rlib new file mode 100644 index 0000000..028382f Binary files /dev/null and b/target/debug/deps/libigloo_cli-0d441a52fb704bbe.rlib differ diff --git a/target/debug/deps/libigloo_cli-0d441a52fb704bbe.rmeta b/target/debug/deps/libigloo_cli-0d441a52fb704bbe.rmeta new file mode 100644 index 0000000..9a87c12 Binary files /dev/null and b/target/debug/deps/libigloo_cli-0d441a52fb704bbe.rmeta differ diff --git a/target/debug/deps/libigloo_cli-11e55e777474678b.rlib b/target/debug/deps/libigloo_cli-11e55e777474678b.rlib new file mode 100644 index 0000000..2fef90e Binary files /dev/null and b/target/debug/deps/libigloo_cli-11e55e777474678b.rlib differ diff --git a/target/debug/deps/libigloo_cli-11e55e777474678b.rmeta b/target/debug/deps/libigloo_cli-11e55e777474678b.rmeta new file mode 100644 index 0000000..aadeaa8 Binary files /dev/null and b/target/debug/deps/libigloo_cli-11e55e777474678b.rmeta differ diff --git a/target/debug/deps/libigloo_cli-1b8328b5a881ab78.rmeta b/target/debug/deps/libigloo_cli-1b8328b5a881ab78.rmeta new file mode 100644 index 0000000..fa289be Binary files /dev/null and b/target/debug/deps/libigloo_cli-1b8328b5a881ab78.rmeta differ diff --git a/target/debug/deps/libigloo_cli-4de5ad14e47bd878.rlib b/target/debug/deps/libigloo_cli-4de5ad14e47bd878.rlib new file mode 100644 index 0000000..476f37c Binary files /dev/null and b/target/debug/deps/libigloo_cli-4de5ad14e47bd878.rlib differ diff --git a/target/debug/deps/libigloo_cli-4de5ad14e47bd878.rmeta b/target/debug/deps/libigloo_cli-4de5ad14e47bd878.rmeta new file mode 100644 index 0000000..ddb4ee1 Binary files /dev/null and b/target/debug/deps/libigloo_cli-4de5ad14e47bd878.rmeta differ diff --git a/target/debug/deps/libigloo_cli-4fb621101fa793e7.rlib b/target/debug/deps/libigloo_cli-4fb621101fa793e7.rlib new file mode 100644 index 0000000..8bcde6d Binary files /dev/null and b/target/debug/deps/libigloo_cli-4fb621101fa793e7.rlib differ diff --git a/target/debug/deps/libigloo_cli-4fb621101fa793e7.rmeta b/target/debug/deps/libigloo_cli-4fb621101fa793e7.rmeta new file mode 100644 index 0000000..4682af3 Binary files /dev/null and b/target/debug/deps/libigloo_cli-4fb621101fa793e7.rmeta differ diff --git a/target/debug/deps/libigloo_core-200494adb085d67c.rlib b/target/debug/deps/libigloo_core-200494adb085d67c.rlib new file mode 100644 index 0000000..5ec282c Binary files /dev/null and b/target/debug/deps/libigloo_core-200494adb085d67c.rlib differ diff --git a/target/debug/deps/libigloo_core-200494adb085d67c.rmeta b/target/debug/deps/libigloo_core-200494adb085d67c.rmeta new file mode 100644 index 0000000..224df52 Binary files /dev/null and b/target/debug/deps/libigloo_core-200494adb085d67c.rmeta differ diff --git a/target/debug/deps/libigloo_core-62cf6b6961d79de2.rlib b/target/debug/deps/libigloo_core-62cf6b6961d79de2.rlib new file mode 100644 index 0000000..de26269 Binary files /dev/null and b/target/debug/deps/libigloo_core-62cf6b6961d79de2.rlib differ diff --git a/target/debug/deps/libigloo_core-62cf6b6961d79de2.rmeta b/target/debug/deps/libigloo_core-62cf6b6961d79de2.rmeta new file mode 100644 index 0000000..d1df0df Binary files /dev/null and b/target/debug/deps/libigloo_core-62cf6b6961d79de2.rmeta differ diff --git a/target/debug/deps/libigloo_core-7bdc6f016fec94ba.rlib b/target/debug/deps/libigloo_core-7bdc6f016fec94ba.rlib new file mode 100644 index 0000000..3dad5f8 Binary files /dev/null and b/target/debug/deps/libigloo_core-7bdc6f016fec94ba.rlib differ diff --git a/target/debug/deps/libigloo_core-7bdc6f016fec94ba.rmeta b/target/debug/deps/libigloo_core-7bdc6f016fec94ba.rmeta new file mode 100644 index 0000000..bbaf9b9 Binary files /dev/null and b/target/debug/deps/libigloo_core-7bdc6f016fec94ba.rmeta differ diff --git a/target/debug/deps/libigloo_make-0cbf3151236bd682.rlib b/target/debug/deps/libigloo_make-0cbf3151236bd682.rlib new file mode 100644 index 0000000..e30dfd2 Binary files /dev/null and b/target/debug/deps/libigloo_make-0cbf3151236bd682.rlib differ diff --git a/target/debug/deps/libigloo_make-0cbf3151236bd682.rmeta b/target/debug/deps/libigloo_make-0cbf3151236bd682.rmeta new file mode 100644 index 0000000..f037c95 Binary files /dev/null and b/target/debug/deps/libigloo_make-0cbf3151236bd682.rmeta differ diff --git a/target/debug/deps/libigloo_make-dd7b268c3cb7b045.rlib b/target/debug/deps/libigloo_make-dd7b268c3cb7b045.rlib new file mode 100644 index 0000000..149e235 Binary files /dev/null and b/target/debug/deps/libigloo_make-dd7b268c3cb7b045.rlib differ diff --git a/target/debug/deps/libigloo_make-dd7b268c3cb7b045.rmeta b/target/debug/deps/libigloo_make-dd7b268c3cb7b045.rmeta new file mode 100644 index 0000000..9cc05b6 Binary files /dev/null and b/target/debug/deps/libigloo_make-dd7b268c3cb7b045.rmeta differ diff --git a/target/debug/deps/libigloo_manifest-a898a4bcc05e7545.rlib b/target/debug/deps/libigloo_manifest-a898a4bcc05e7545.rlib new file mode 100644 index 0000000..1c4e267 Binary files /dev/null and b/target/debug/deps/libigloo_manifest-a898a4bcc05e7545.rlib differ diff --git a/target/debug/deps/libigloo_manifest-a898a4bcc05e7545.rmeta b/target/debug/deps/libigloo_manifest-a898a4bcc05e7545.rmeta new file mode 100644 index 0000000..ad92001 Binary files /dev/null and b/target/debug/deps/libigloo_manifest-a898a4bcc05e7545.rmeta differ diff --git a/target/debug/deps/libigloo_manifest-adeea1a769817567.rlib b/target/debug/deps/libigloo_manifest-adeea1a769817567.rlib new file mode 100644 index 0000000..1f01e3e Binary files /dev/null and b/target/debug/deps/libigloo_manifest-adeea1a769817567.rlib differ diff --git a/target/debug/deps/libigloo_manifest-adeea1a769817567.rmeta b/target/debug/deps/libigloo_manifest-adeea1a769817567.rmeta new file mode 100644 index 0000000..7a5a524 Binary files /dev/null and b/target/debug/deps/libigloo_manifest-adeea1a769817567.rmeta differ diff --git a/target/debug/deps/libigloo_manifest-d3b77ad10ba9545a.rlib b/target/debug/deps/libigloo_manifest-d3b77ad10ba9545a.rlib new file mode 100644 index 0000000..58e4a8c Binary files /dev/null and b/target/debug/deps/libigloo_manifest-d3b77ad10ba9545a.rlib differ diff --git a/target/debug/deps/libigloo_manifest-d3b77ad10ba9545a.rmeta b/target/debug/deps/libigloo_manifest-d3b77ad10ba9545a.rmeta new file mode 100644 index 0000000..99df168 Binary files /dev/null and b/target/debug/deps/libigloo_manifest-d3b77ad10ba9545a.rmeta differ diff --git a/target/debug/deps/liblibc-7753addeb8e632c3.rlib b/target/debug/deps/liblibc-7753addeb8e632c3.rlib new file mode 100644 index 0000000..44d8dc1 Binary files /dev/null and b/target/debug/deps/liblibc-7753addeb8e632c3.rlib differ diff --git a/target/debug/deps/liblibc-7753addeb8e632c3.rmeta b/target/debug/deps/liblibc-7753addeb8e632c3.rmeta new file mode 100644 index 0000000..3c48d3d Binary files /dev/null and b/target/debug/deps/liblibc-7753addeb8e632c3.rmeta differ diff --git a/target/debug/deps/liblog-08d572310e53ae0e.rlib b/target/debug/deps/liblog-08d572310e53ae0e.rlib new file mode 100644 index 0000000..105c4b3 Binary files /dev/null and b/target/debug/deps/liblog-08d572310e53ae0e.rlib differ diff --git a/target/debug/deps/liblog-08d572310e53ae0e.rmeta b/target/debug/deps/liblog-08d572310e53ae0e.rmeta new file mode 100644 index 0000000..d49e1f6 Binary files /dev/null and b/target/debug/deps/liblog-08d572310e53ae0e.rmeta differ diff --git a/target/debug/deps/libmetadeps-28a05530d0c520e4.rlib b/target/debug/deps/libmetadeps-28a05530d0c520e4.rlib new file mode 100644 index 0000000..e83dea1 Binary files /dev/null and b/target/debug/deps/libmetadeps-28a05530d0c520e4.rlib differ diff --git a/target/debug/deps/libmetadeps-28a05530d0c520e4.rmeta b/target/debug/deps/libmetadeps-28a05530d0c520e4.rmeta new file mode 100644 index 0000000..5a059e5 Binary files /dev/null and b/target/debug/deps/libmetadeps-28a05530d0c520e4.rmeta differ diff --git a/target/debug/deps/libpkg_config-cf02468aab053ab0.rlib b/target/debug/deps/libpkg_config-cf02468aab053ab0.rlib new file mode 100644 index 0000000..320be00 Binary files /dev/null and b/target/debug/deps/libpkg_config-cf02468aab053ab0.rlib differ diff --git a/target/debug/deps/libpkg_config-cf02468aab053ab0.rmeta b/target/debug/deps/libpkg_config-cf02468aab053ab0.rmeta new file mode 100644 index 0000000..cee9ba6 Binary files /dev/null and b/target/debug/deps/libpkg_config-cf02468aab053ab0.rmeta differ diff --git a/target/debug/deps/libtoml-98e7d26a4c38ba35.rlib b/target/debug/deps/libtoml-98e7d26a4c38ba35.rlib new file mode 100644 index 0000000..8e00753 Binary files /dev/null and b/target/debug/deps/libtoml-98e7d26a4c38ba35.rlib differ diff --git a/target/debug/deps/libtoml-98e7d26a4c38ba35.rmeta b/target/debug/deps/libtoml-98e7d26a4c38ba35.rmeta new file mode 100644 index 0000000..044e25b Binary files /dev/null and b/target/debug/deps/libtoml-98e7d26a4c38ba35.rmeta differ diff --git a/target/debug/deps/libzmq-647b43f31da68993.rlib b/target/debug/deps/libzmq-647b43f31da68993.rlib new file mode 100644 index 0000000..2173fa4 Binary files /dev/null and b/target/debug/deps/libzmq-647b43f31da68993.rlib differ diff --git a/target/debug/deps/libzmq-647b43f31da68993.rmeta b/target/debug/deps/libzmq-647b43f31da68993.rmeta new file mode 100644 index 0000000..d352ab1 Binary files /dev/null and b/target/debug/deps/libzmq-647b43f31da68993.rmeta differ diff --git a/target/debug/deps/libzmq_sys-58751278e8756dc3.rlib b/target/debug/deps/libzmq_sys-58751278e8756dc3.rlib new file mode 100644 index 0000000..875bfc0 Binary files /dev/null and b/target/debug/deps/libzmq_sys-58751278e8756dc3.rlib differ diff --git a/target/debug/deps/libzmq_sys-58751278e8756dc3.rmeta b/target/debug/deps/libzmq_sys-58751278e8756dc3.rmeta new file mode 100644 index 0000000..bf2acea Binary files /dev/null and b/target/debug/deps/libzmq_sys-58751278e8756dc3.rmeta differ diff --git a/target/debug/deps/log-08d572310e53ae0e.d b/target/debug/deps/log-08d572310e53ae0e.d new file mode 100644 index 0000000..7a4faca --- /dev/null +++ b/target/debug/deps/log-08d572310e53ae0e.d @@ -0,0 +1,9 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/log-08d572310e53ae0e.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/serde.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/liblog-08d572310e53ae0e.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/serde.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/log-08d572310e53ae0e.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/serde.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/lib.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/macros.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/serde.rs: diff --git a/target/debug/deps/metadeps-28a05530d0c520e4.d b/target/debug/deps/metadeps-28a05530d0c520e4.d new file mode 100644 index 0000000..383e7c4 --- /dev/null +++ b/target/debug/deps/metadeps-28a05530d0c520e4.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/metadeps-28a05530d0c520e4.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/metadeps-1.1.2/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libmetadeps-28a05530d0c520e4.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/metadeps-1.1.2/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/metadeps-28a05530d0c520e4.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/metadeps-1.1.2/src/lib.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/metadeps-1.1.2/src/lib.rs: diff --git a/target/debug/deps/pkg_config-cf02468aab053ab0.d b/target/debug/deps/pkg_config-cf02468aab053ab0.d new file mode 100644 index 0000000..7384456 --- /dev/null +++ b/target/debug/deps/pkg_config-cf02468aab053ab0.d @@ -0,0 +1,7 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/pkg_config-cf02468aab053ab0.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.19/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libpkg_config-cf02468aab053ab0.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.19/src/lib.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/pkg_config-cf02468aab053ab0.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.19/src/lib.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.19/src/lib.rs: diff --git a/target/debug/deps/toml-98e7d26a4c38ba35.d b/target/debug/deps/toml-98e7d26a4c38ba35.d new file mode 100644 index 0000000..953eba2 --- /dev/null +++ b/target/debug/deps/toml-98e7d26a4c38ba35.d @@ -0,0 +1,9 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/toml-98e7d26a4c38ba35.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/display.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libtoml-98e7d26a4c38ba35.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/display.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/toml-98e7d26a4c38ba35.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/display.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/lib.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/parser.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.2.1/src/display.rs: diff --git a/target/debug/deps/zmq-647b43f31da68993.d b/target/debug/deps/zmq-647b43f31da68993.d new file mode 100644 index 0000000..a01c7ad --- /dev/null +++ b/target/debug/deps/zmq-647b43f31da68993.d @@ -0,0 +1,9 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/zmq-647b43f31da68993.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/message.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/sockopt.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libzmq-647b43f31da68993.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/message.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/sockopt.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/zmq-647b43f31da68993.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/message.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/sockopt.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/lib.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/message.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-0.9.2/src/sockopt.rs: diff --git a/target/debug/deps/zmq_sys-58751278e8756dc3.d b/target/debug/deps/zmq_sys-58751278e8756dc3.d new file mode 100644 index 0000000..ca72425 --- /dev/null +++ b/target/debug/deps/zmq_sys-58751278e8756dc3.d @@ -0,0 +1,10 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/zmq_sys-58751278e8756dc3.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/unix.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/errno.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/ffi.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/libzmq_sys-58751278e8756dc3.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/unix.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/errno.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/ffi.rs + +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/deps/zmq_sys-58751278e8756dc3.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/unix.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/errno.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/ffi.rs + +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/lib.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/unix.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/errno.rs: +/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/zmq-sys-0.11.0/src/ffi.rs: diff --git a/target/debug/igloo b/target/debug/igloo index 99b2b4c..1f2393f 100644 Binary files a/target/debug/igloo and b/target/debug/igloo differ diff --git a/target/release/build/memchr-3df2d04dc68b3e7b/build-script-build b/target/debug/igloo-agent similarity index 54% rename from target/release/build/memchr-3df2d04dc68b3e7b/build-script-build rename to target/debug/igloo-agent index 2d019b9..c90803e 100644 Binary files a/target/release/build/memchr-3df2d04dc68b3e7b/build-script-build and b/target/debug/igloo-agent differ diff --git a/target/debug/igloo-agent.d b/target/debug/igloo-agent.d new file mode 100644 index 0000000..39cdcc5 --- /dev/null +++ b/target/debug/igloo-agent.d @@ -0,0 +1 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/igloo-agent: /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo-agent/src/main.rs diff --git a/target/debug/igloo_agent b/target/debug/igloo_agent new file mode 100644 index 0000000..fad6c6d Binary files /dev/null and b/target/debug/igloo_agent differ diff --git a/target/debug/igloo_agent.d b/target/debug/igloo_agent.d new file mode 100644 index 0000000..3586bfe --- /dev/null +++ b/target/debug/igloo_agent.d @@ -0,0 +1 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/igloo_agent: /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_agent/src/main.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_cli/src/lib.rs diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2z8nrirn2ob5y1vp.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2z8nrirn2ob5y1vp.o deleted file mode 100644 index d5aac26..0000000 Binary files a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2z8nrirn2ob5y1vp.o and /dev/null differ diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/query-cache.bin b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/query-cache.bin deleted file mode 100644 index 0840643..0000000 Binary files a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/query-cache.bin and /dev/null differ diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/12235tjbyoi6hjaa.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/12235tjbyoi6hjaa.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/12235tjbyoi6hjaa.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/12235tjbyoi6hjaa.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/17eimp512hocgd3d.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/17eimp512hocgd3d.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/17eimp512hocgd3d.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/17eimp512hocgd3d.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/18if8klzejcb8nni.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/18if8klzejcb8nni.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/18if8klzejcb8nni.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/18if8klzejcb8nni.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/1a6y492ywsm1g6uo.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/1a6y492ywsm1g6uo.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/1a6y492ywsm1g6uo.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/1a6y492ywsm1g6uo.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/1aw9cp8hib41kd3i.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/1aw9cp8hib41kd3i.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/1aw9cp8hib41kd3i.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/1aw9cp8hib41kd3i.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/1t2nbrk6fixpl8xq.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/1t2nbrk6fixpl8xq.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/1t2nbrk6fixpl8xq.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/1t2nbrk6fixpl8xq.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/1vjfgwce89mtjs0z.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/1vjfgwce89mtjs0z.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/1vjfgwce89mtjs0z.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/1vjfgwce89mtjs0z.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/23i8nq0qh35w1p62.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/23i8nq0qh35w1p62.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/23i8nq0qh35w1p62.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/23i8nq0qh35w1p62.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/246g6gise6v310e6.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/246g6gise6v310e6.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/246g6gise6v310e6.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/246g6gise6v310e6.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/24jfdinoz8hyt5n2.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/24jfdinoz8hyt5n2.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/24jfdinoz8hyt5n2.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/24jfdinoz8hyt5n2.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/25sueunxqr4mn4cz.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/25sueunxqr4mn4cz.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/25sueunxqr4mn4cz.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/25sueunxqr4mn4cz.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/268va99g1f6dy0fb.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/268va99g1f6dy0fb.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/268va99g1f6dy0fb.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/268va99g1f6dy0fb.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/28q77wz47veh3vbz.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/28q77wz47veh3vbz.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/28q77wz47veh3vbz.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/28q77wz47veh3vbz.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2bmlxdjy4pn4s4x1.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2bmlxdjy4pn4s4x1.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2bmlxdjy4pn4s4x1.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2bmlxdjy4pn4s4x1.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2c28enf6xnqac8lu.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2c28enf6xnqac8lu.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2c28enf6xnqac8lu.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2c28enf6xnqac8lu.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2dloim1jnr4jyowe.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2dloim1jnr4jyowe.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2dloim1jnr4jyowe.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2dloim1jnr4jyowe.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2i41u0a45trn5n94.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2i41u0a45trn5n94.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2i41u0a45trn5n94.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2i41u0a45trn5n94.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2inr31r1ukgb2hrk.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2inr31r1ukgb2hrk.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2inr31r1ukgb2hrk.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2inr31r1ukgb2hrk.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2lbtb06a242m0szt.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2lbtb06a242m0szt.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2lbtb06a242m0szt.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2lbtb06a242m0szt.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2n0in5l335o5r7ct.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2n0in5l335o5r7ct.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2n0in5l335o5r7ct.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2n0in5l335o5r7ct.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2ny9x1iye09ex3v0.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2ny9x1iye09ex3v0.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2ny9x1iye09ex3v0.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2ny9x1iye09ex3v0.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2smpxg1amjh4qbzc.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2smpxg1amjh4qbzc.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2smpxg1amjh4qbzc.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2smpxg1amjh4qbzc.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2z39mga8665hfr0u.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2z39mga8665hfr0u.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/2z39mga8665hfr0u.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2z39mga8665hfr0u.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2z8nrirn2ob5y1vp.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2z8nrirn2ob5y1vp.o new file mode 100644 index 0000000..5b3bfff Binary files /dev/null and b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/2z8nrirn2ob5y1vp.o differ diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/30v0canoky8fm6z4.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/30v0canoky8fm6z4.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/30v0canoky8fm6z4.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/30v0canoky8fm6z4.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3421z6o4u2wkb7jf.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3421z6o4u2wkb7jf.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3421z6o4u2wkb7jf.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3421z6o4u2wkb7jf.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/34bq3dwz1e07z78r.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/34bq3dwz1e07z78r.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/34bq3dwz1e07z78r.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/34bq3dwz1e07z78r.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/365zsk097j0hp3o5.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/365zsk097j0hp3o5.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/365zsk097j0hp3o5.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/365zsk097j0hp3o5.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/36vxsvjpyke4oiei.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/36vxsvjpyke4oiei.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/36vxsvjpyke4oiei.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/36vxsvjpyke4oiei.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/38y2ov69hg2twsms.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/38y2ov69hg2twsms.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/38y2ov69hg2twsms.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/38y2ov69hg2twsms.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3abg3zufz54k1xdb.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3abg3zufz54k1xdb.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3abg3zufz54k1xdb.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3abg3zufz54k1xdb.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3c3ez2w7om786szl.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3c3ez2w7om786szl.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3c3ez2w7om786szl.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3c3ez2w7om786szl.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3chgbq2bzmlj4qfl.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3chgbq2bzmlj4qfl.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3chgbq2bzmlj4qfl.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3chgbq2bzmlj4qfl.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3clb1ygvmf3wl20i.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3clb1ygvmf3wl20i.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3clb1ygvmf3wl20i.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3clb1ygvmf3wl20i.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3d65e9x60l5xj959.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3d65e9x60l5xj959.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3d65e9x60l5xj959.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3d65e9x60l5xj959.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3gixwxtl9se8s69a.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3gixwxtl9se8s69a.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3gixwxtl9se8s69a.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3gixwxtl9se8s69a.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3hwffsc1g4fw0q6f.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3hwffsc1g4fw0q6f.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3hwffsc1g4fw0q6f.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3hwffsc1g4fw0q6f.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3jv7i6f436y0huhu.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3jv7i6f436y0huhu.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3jv7i6f436y0huhu.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3jv7i6f436y0huhu.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3mm3py6oegcrn97l.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3mm3py6oegcrn97l.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3mm3py6oegcrn97l.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3mm3py6oegcrn97l.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3mv019wzsoimnz04.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3mv019wzsoimnz04.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3mv019wzsoimnz04.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3mv019wzsoimnz04.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3nhhi1sngm81time.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3nhhi1sngm81time.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3nhhi1sngm81time.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3nhhi1sngm81time.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3oq1gczx0s62y02e.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3oq1gczx0s62y02e.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3oq1gczx0s62y02e.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3oq1gczx0s62y02e.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3sqiwljl5tzsj2v4.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3sqiwljl5tzsj2v4.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3sqiwljl5tzsj2v4.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3sqiwljl5tzsj2v4.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3tqcn19iw04lpkyn.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3tqcn19iw04lpkyn.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3tqcn19iw04lpkyn.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3tqcn19iw04lpkyn.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3y5gesrovk5blotd.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3y5gesrovk5blotd.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/3y5gesrovk5blotd.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/3y5gesrovk5blotd.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/41nqaqo7n633mk9s.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/41nqaqo7n633mk9s.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/41nqaqo7n633mk9s.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/41nqaqo7n633mk9s.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/43x602kr7kqlfx12.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/43x602kr7kqlfx12.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/43x602kr7kqlfx12.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/43x602kr7kqlfx12.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/46v5s9vx1222csvo.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/46v5s9vx1222csvo.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/46v5s9vx1222csvo.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/46v5s9vx1222csvo.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4fxp6rqtxpsppqx0.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4fxp6rqtxpsppqx0.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4fxp6rqtxpsppqx0.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4fxp6rqtxpsppqx0.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4g1foqr5u1uig4im.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4g1foqr5u1uig4im.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4g1foqr5u1uig4im.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4g1foqr5u1uig4im.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4kejaiz3ame1dhqz.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4kejaiz3ame1dhqz.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4kejaiz3ame1dhqz.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4kejaiz3ame1dhqz.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4memse9l8yopg81w.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4memse9l8yopg81w.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4memse9l8yopg81w.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4memse9l8yopg81w.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4q9qusnouby98zbt.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4q9qusnouby98zbt.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4q9qusnouby98zbt.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4q9qusnouby98zbt.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4tg3032k39ls607i.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4tg3032k39ls607i.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4tg3032k39ls607i.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4tg3032k39ls607i.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4townhtl4s21q9cj.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4townhtl4s21q9cj.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4townhtl4s21q9cj.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4townhtl4s21q9cj.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4tr5ovt1ehmd6t1i.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4tr5ovt1ehmd6t1i.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/4tr5ovt1ehmd6t1i.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/4tr5ovt1ehmd6t1i.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/5aiigxh90r3x1tn8.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/5aiigxh90r3x1tn8.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/5aiigxh90r3x1tn8.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/5aiigxh90r3x1tn8.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/5akqo60tt4o2q8u6.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/5akqo60tt4o2q8u6.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/5akqo60tt4o2q8u6.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/5akqo60tt4o2q8u6.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/5bcym80zekus31mv.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/5bcym80zekus31mv.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/5bcym80zekus31mv.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/5bcym80zekus31mv.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/66a49zf3ls4g580.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/66a49zf3ls4g580.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/66a49zf3ls4g580.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/66a49zf3ls4g580.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/dep-graph.bin b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/dep-graph.bin similarity index 64% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/dep-graph.bin rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/dep-graph.bin index 678a863..0549386 100644 Binary files a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/dep-graph.bin and b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/dep-graph.bin differ diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/e86geswvnogr680.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/e86geswvnogr680.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/e86geswvnogr680.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/e86geswvnogr680.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/futj7n4q6yh9eyx.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/futj7n4q6yh9eyx.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/futj7n4q6yh9eyx.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/futj7n4q6yh9eyx.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/i0u94p2zc5wl4zc.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/i0u94p2zc5wl4zc.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/i0u94p2zc5wl4zc.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/i0u94p2zc5wl4zc.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/klguyy28b30e8mb.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/klguyy28b30e8mb.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/klguyy28b30e8mb.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/klguyy28b30e8mb.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/m8zxpg74vt4ba3j.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/m8zxpg74vt4ba3j.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/m8zxpg74vt4ba3j.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/m8zxpg74vt4ba3j.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/mesap028kfjf2th.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/mesap028kfjf2th.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/mesap028kfjf2th.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/mesap028kfjf2th.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/query-cache.bin b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/query-cache.bin new file mode 100644 index 0000000..9a20450 Binary files /dev/null and b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/query-cache.bin differ diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/s8tbj7o19ol7shv.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/s8tbj7o19ol7shv.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/s8tbj7o19ol7shv.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/s8tbj7o19ol7shv.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/wg408129m1t7q0k.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/wg408129m1t7q0k.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/wg408129m1t7q0k.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/wg408129m1t7q0k.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/work-products.bin b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/work-products.bin similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/work-products.bin rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/work-products.bin diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/x1n5my2szh04xlo.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/x1n5my2szh04xlo.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/x1n5my2szh04xlo.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/x1n5my2szh04xlo.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/xmb3iaz27f94sm1.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/xmb3iaz27f94sm1.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/xmb3iaz27f94sm1.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/xmb3iaz27f94sm1.o diff --git a/target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/y13ysi644k8uxid.o b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/y13ysi644k8uxid.o similarity index 100% rename from target/debug/incremental/igloo-1qna9o88y8xid/s-fsqgc4h0pi-4l0cf3-s90njwk0bdvk/y13ysi644k8uxid.o rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz-2m1lm07gb9s0v/y13ysi644k8uxid.o diff --git a/target/release/build/proc-macro-error-attr-eb9cae79429bba7f/output b/target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz.lock similarity index 100% rename from target/release/build/proc-macro-error-attr-eb9cae79429bba7f/output rename to target/debug/incremental/igloo-1qna9o88y8xid/s-fsrb7ee022-1mc1blz.lock diff --git a/target/release/build/proc-macro2-611c77acf2619bc7/stderr b/target/debug/incremental/igloo-2bqcsxd5kqw9j/s-fsrd53qsaw-u9771q.lock similarity index 100% rename from target/release/build/proc-macro2-611c77acf2619bc7/stderr rename to target/debug/incremental/igloo-2bqcsxd5kqw9j/s-fsrd53qsaw-u9771q.lock diff --git a/target/release/build/ryu-e4213df9ff9d99ae/stderr b/target/debug/incremental/igloo-2bqcsxd5kqw9j/s-fsrd56nobe-7j1yq9.lock similarity index 100% rename from target/release/build/ryu-e4213df9ff9d99ae/stderr rename to target/debug/incremental/igloo-2bqcsxd5kqw9j/s-fsrd56nobe-7j1yq9.lock diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/2u3vhlvwchxohjo4.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/2u3vhlvwchxohjo4.o similarity index 100% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/2u3vhlvwchxohjo4.o rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/2u3vhlvwchxohjo4.o diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/3my2zco0cumz7376.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/3my2zco0cumz7376.o similarity index 100% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/3my2zco0cumz7376.o rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/3my2zco0cumz7376.o diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/4d5z046icwli4d84.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/4d5z046icwli4d84.o similarity index 100% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/4d5z046icwli4d84.o rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/4d5z046icwli4d84.o diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/4ul38sdyb0lxa03w.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/4ul38sdyb0lxa03w.o similarity index 100% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/4ul38sdyb0lxa03w.o rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/4ul38sdyb0lxa03w.o diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/551qhl8hj5pg02w3.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/551qhl8hj5pg02w3.o similarity index 100% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/551qhl8hj5pg02w3.o rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/551qhl8hj5pg02w3.o diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/dep-graph.bin b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/dep-graph.bin similarity index 69% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/dep-graph.bin rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/dep-graph.bin index 814dcc7..9064928 100644 Binary files a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/dep-graph.bin and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/dep-graph.bin differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/query-cache.bin b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/query-cache.bin similarity index 69% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/query-cache.bin rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/query-cache.bin index 70423b4..f791b87 100644 Binary files a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/query-cache.bin and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/query-cache.bin differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/uiqpayct5c6dq3v.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/uiqpayct5c6dq3v.o similarity index 100% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/uiqpayct5c6dq3v.o rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/uiqpayct5c6dq3v.o diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/work-products.bin b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/work-products.bin similarity index 100% rename from target/debug/incremental/igloo-38yu9lntz4pjd/s-fsqgcxbflp-17794qb-1fz0utmpbqx6q/work-products.bin rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti-2jifnhkny619x/work-products.bin diff --git a/target/release/build/serde-0e25c32ea550a82a/stderr b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti.lock similarity index 100% rename from target/release/build/serde-0e25c32ea550a82a/stderr rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrcayl3m0-1i4oqti.lock diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/2u3vhlvwchxohjo4.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/2u3vhlvwchxohjo4.o new file mode 100644 index 0000000..ec293d9 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/2u3vhlvwchxohjo4.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/3my2zco0cumz7376.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/3my2zco0cumz7376.o new file mode 100644 index 0000000..cd919a3 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/3my2zco0cumz7376.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/4d5z046icwli4d84.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/4d5z046icwli4d84.o new file mode 100644 index 0000000..fd54990 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/4d5z046icwli4d84.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/4ul38sdyb0lxa03w.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/4ul38sdyb0lxa03w.o new file mode 100644 index 0000000..19d0e55 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/4ul38sdyb0lxa03w.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/551qhl8hj5pg02w3.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/551qhl8hj5pg02w3.o new file mode 100644 index 0000000..d624435 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/551qhl8hj5pg02w3.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/dep-graph.bin b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/dep-graph.bin new file mode 100644 index 0000000..9064928 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/query-cache.bin b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/query-cache.bin new file mode 100644 index 0000000..f791b87 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/uiqpayct5c6dq3v.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/uiqpayct5c6dq3v.o new file mode 100644 index 0000000..ad17d70 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/uiqpayct5c6dq3v.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/work-products.bin b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/work-products.bin new file mode 100644 index 0000000..671f16b Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet-working/work-products.bin differ diff --git a/target/release/build/serde_json-a1676b9f242b82a0/stderr b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet.lock similarity index 100% rename from target/release/build/serde_json-a1676b9f242b82a0/stderr rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14mdgu-1b6clet.lock diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/2u3vhlvwchxohjo4.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/2u3vhlvwchxohjo4.o new file mode 100644 index 0000000..ec293d9 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/2u3vhlvwchxohjo4.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/3my2zco0cumz7376.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/3my2zco0cumz7376.o new file mode 100644 index 0000000..cd919a3 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/3my2zco0cumz7376.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/4d5z046icwli4d84.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/4d5z046icwli4d84.o new file mode 100644 index 0000000..fd54990 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/4d5z046icwli4d84.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/4ul38sdyb0lxa03w.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/4ul38sdyb0lxa03w.o new file mode 100644 index 0000000..19d0e55 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/4ul38sdyb0lxa03w.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/551qhl8hj5pg02w3.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/551qhl8hj5pg02w3.o new file mode 100644 index 0000000..d624435 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/551qhl8hj5pg02w3.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/dep-graph.bin b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/dep-graph.bin new file mode 100644 index 0000000..9064928 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/query-cache.bin b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/query-cache.bin new file mode 100644 index 0000000..f791b87 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/uiqpayct5c6dq3v.o b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/uiqpayct5c6dq3v.o new file mode 100644 index 0000000..ad17d70 Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/uiqpayct5c6dq3v.o differ diff --git a/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/work-products.bin b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/work-products.bin new file mode 100644 index 0000000..671f16b Binary files /dev/null and b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e-working/work-products.bin differ diff --git a/target/release/build/syn-d4a547281a1b9843/stderr b/target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e.lock similarity index 100% rename from target/release/build/syn-d4a547281a1b9843/stderr rename to target/debug/incremental/igloo-38yu9lntz4pjd/s-fsrd14wv9w-33tc1e.lock diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/15m8y21df3fvssen.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/15m8y21df3fvssen.o new file mode 100644 index 0000000..e603ff0 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/15m8y21df3fvssen.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/1vd10mtyovrvj4k4.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/1vd10mtyovrvj4k4.o new file mode 100644 index 0000000..e5eda8d Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/1vd10mtyovrvj4k4.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/1xaiofwswpxeh66w.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/1xaiofwswpxeh66w.o new file mode 100644 index 0000000..a95d584 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/1xaiofwswpxeh66w.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/37wikixnbsdt1oqk.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/37wikixnbsdt1oqk.o new file mode 100644 index 0000000..b5f1699 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/37wikixnbsdt1oqk.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/4aag137ysne64zlx.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/4aag137ysne64zlx.o new file mode 100644 index 0000000..1ac8980 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/4aag137ysne64zlx.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/4hknvjcmpxcrzqmj.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/4hknvjcmpxcrzqmj.o new file mode 100644 index 0000000..e1ab43d Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/4hknvjcmpxcrzqmj.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/5dmqgvo9kzqaotqg.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/5dmqgvo9kzqaotqg.o new file mode 100644 index 0000000..efb8b0c Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/5dmqgvo9kzqaotqg.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/dep-graph.bin b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/dep-graph.bin new file mode 100644 index 0000000..51300d8 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/kfnpaugwtk4tfy8.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/kfnpaugwtk4tfy8.o new file mode 100644 index 0000000..5ac683f Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/kfnpaugwtk4tfy8.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/query-cache.bin b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/query-cache.bin new file mode 100644 index 0000000..17babca Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/query-cache.bin differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/work-products.bin b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/work-products.bin new file mode 100644 index 0000000..d1ceb85 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75-fviubblgdjur/work-products.bin differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75.lock b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbcl79yh-1qm1c75.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/15m8y21df3fvssen.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/15m8y21df3fvssen.o new file mode 100644 index 0000000..e603ff0 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/15m8y21df3fvssen.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/1vd10mtyovrvj4k4.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/1vd10mtyovrvj4k4.o new file mode 100644 index 0000000..e5eda8d Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/1vd10mtyovrvj4k4.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/1xaiofwswpxeh66w.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/1xaiofwswpxeh66w.o new file mode 100644 index 0000000..a95d584 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/1xaiofwswpxeh66w.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/37wikixnbsdt1oqk.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/37wikixnbsdt1oqk.o new file mode 100644 index 0000000..b5f1699 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/37wikixnbsdt1oqk.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/4aag137ysne64zlx.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/4aag137ysne64zlx.o new file mode 100644 index 0000000..1ac8980 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/4aag137ysne64zlx.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/4hknvjcmpxcrzqmj.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/4hknvjcmpxcrzqmj.o new file mode 100644 index 0000000..e1ab43d Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/4hknvjcmpxcrzqmj.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/5dmqgvo9kzqaotqg.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/5dmqgvo9kzqaotqg.o new file mode 100644 index 0000000..efb8b0c Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/5dmqgvo9kzqaotqg.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/dep-graph.bin b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/dep-graph.bin new file mode 100644 index 0000000..51300d8 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/kfnpaugwtk4tfy8.o b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/kfnpaugwtk4tfy8.o new file mode 100644 index 0000000..5ac683f Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/kfnpaugwtk4tfy8.o differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/query-cache.bin b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/query-cache.bin new file mode 100644 index 0000000..17babca Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/work-products.bin b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/work-products.bin new file mode 100644 index 0000000..d1ceb85 Binary files /dev/null and b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc-working/work-products.bin differ diff --git a/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc.lock b/target/debug/incremental/igloo_agent-11geouwpjbi4k/s-fsrbjzd1ov-1vm8wlc.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/1hzc2yluwr1q16mz.o b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/1hzc2yluwr1q16mz.o new file mode 100644 index 0000000..f9594c3 Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/1hzc2yluwr1q16mz.o differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/1ift3flowa20v1tk.o b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/1ift3flowa20v1tk.o new file mode 100644 index 0000000..3481e53 Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/1ift3flowa20v1tk.o differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/27flrfequ99jqm6l.o b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/27flrfequ99jqm6l.o new file mode 100644 index 0000000..0fd3ae3 Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/27flrfequ99jqm6l.o differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/2f9r43mpldht8nki.o b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/2f9r43mpldht8nki.o new file mode 100644 index 0000000..0a8fa44 Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/2f9r43mpldht8nki.o differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/2h1znazm70al4euy.o b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/2h1znazm70al4euy.o new file mode 100644 index 0000000..4df2b1e Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/2h1znazm70al4euy.o differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/49qf35gd55inzwn1.o b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/49qf35gd55inzwn1.o new file mode 100644 index 0000000..35f1439 Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/49qf35gd55inzwn1.o differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/4r7vzixe8dn8s72f.o b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/4r7vzixe8dn8s72f.o new file mode 100644 index 0000000..ff33f14 Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/4r7vzixe8dn8s72f.o differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/dep-graph.bin b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/dep-graph.bin new file mode 100644 index 0000000..82cd27e Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/p4j5lv03eos0lzq.o b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/p4j5lv03eos0lzq.o new file mode 100644 index 0000000..a203614 Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/p4j5lv03eos0lzq.o differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/query-cache.bin b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/query-cache.bin new file mode 100644 index 0000000..e837290 Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/query-cache.bin differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/work-products.bin b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/work-products.bin new file mode 100644 index 0000000..ac0d8b4 Binary files /dev/null and b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4-2w9kpumzlirmi/work-products.bin differ diff --git a/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4.lock b/target/debug/incremental/igloo_agent-1apx0y1kpxcqv/s-fsrbm9j11s-tb6hi4.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1c8avjqml213i8rk.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1c8avjqml213i8rk.o new file mode 100644 index 0000000..267c9af Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1c8avjqml213i8rk.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1e2xc4rzm2f0q2da.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1e2xc4rzm2f0q2da.o new file mode 100644 index 0000000..66eedb5 Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1e2xc4rzm2f0q2da.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1sswxudbkrwm7acs.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1sswxudbkrwm7acs.o new file mode 100644 index 0000000..3f286bc Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1sswxudbkrwm7acs.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1zbuo98oq0yl6188.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1zbuo98oq0yl6188.o new file mode 100644 index 0000000..459ac67 Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/1zbuo98oq0yl6188.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/2bndjra6ltpkwd0j.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/2bndjra6ltpkwd0j.o new file mode 100644 index 0000000..cdf1ead Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/2bndjra6ltpkwd0j.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/dep-graph.bin b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/dep-graph.bin new file mode 100644 index 0000000..d41dc02 Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/ee0uc4qilsf75d4.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/ee0uc4qilsf75d4.o new file mode 100644 index 0000000..ee94fba Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/ee0uc4qilsf75d4.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/jk4cxfww6xbih9h.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/jk4cxfww6xbih9h.o new file mode 100644 index 0000000..f4b278a Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/jk4cxfww6xbih9h.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/query-cache.bin b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/query-cache.bin new file mode 100644 index 0000000..14fa84d Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/query-cache.bin differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/work-products.bin b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/work-products.bin new file mode 100644 index 0000000..9b35cef Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l-2xm7a4vmms667/work-products.bin differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l.lock b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbdbwuja-174vf9l.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1c8avjqml213i8rk.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1c8avjqml213i8rk.o new file mode 100644 index 0000000..267c9af Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1c8avjqml213i8rk.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1e2xc4rzm2f0q2da.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1e2xc4rzm2f0q2da.o new file mode 100644 index 0000000..66eedb5 Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1e2xc4rzm2f0q2da.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1sswxudbkrwm7acs.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1sswxudbkrwm7acs.o new file mode 100644 index 0000000..3f286bc Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1sswxudbkrwm7acs.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1zbuo98oq0yl6188.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1zbuo98oq0yl6188.o new file mode 100644 index 0000000..459ac67 Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/1zbuo98oq0yl6188.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/2bndjra6ltpkwd0j.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/2bndjra6ltpkwd0j.o new file mode 100644 index 0000000..cdf1ead Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/2bndjra6ltpkwd0j.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/dep-graph.bin b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/dep-graph.bin new file mode 100644 index 0000000..d41dc02 Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/ee0uc4qilsf75d4.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/ee0uc4qilsf75d4.o new file mode 100644 index 0000000..ee94fba Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/ee0uc4qilsf75d4.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/jk4cxfww6xbih9h.o b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/jk4cxfww6xbih9h.o new file mode 100644 index 0000000..f4b278a Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/jk4cxfww6xbih9h.o differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/query-cache.bin b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/query-cache.bin new file mode 100644 index 0000000..14fa84d Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/work-products.bin b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/work-products.bin new file mode 100644 index 0000000..9b35cef Binary files /dev/null and b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm-working/work-products.bin differ diff --git a/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm.lock b/target/debug/incremental/igloo_agent-29wmtutjq7vcf/s-fsrbjo1rju-l4uhsm.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/1f3f7zw0qy0ogx7s.o b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/1f3f7zw0qy0ogx7s.o new file mode 100644 index 0000000..1d9a509 Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/1f3f7zw0qy0ogx7s.o differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/1rmob87w70sbd0kj.o b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/1rmob87w70sbd0kj.o new file mode 100644 index 0000000..7f0e1f8 Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/1rmob87w70sbd0kj.o differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/2o6f8fc2i5n2fmh6.o b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/2o6f8fc2i5n2fmh6.o new file mode 100644 index 0000000..02a243a Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/2o6f8fc2i5n2fmh6.o differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/4loz12wwujz81j65.o b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/4loz12wwujz81j65.o new file mode 100644 index 0000000..f8d34b9 Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/4loz12wwujz81j65.o differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/7vlrgaqxc7ygg1r.o b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/7vlrgaqxc7ygg1r.o new file mode 100644 index 0000000..ad59483 Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/7vlrgaqxc7ygg1r.o differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/8klzpshg5xiqk3n.o b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/8klzpshg5xiqk3n.o new file mode 100644 index 0000000..1fc1f1c Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/8klzpshg5xiqk3n.o differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/dep-graph.bin b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/dep-graph.bin new file mode 100644 index 0000000..1c00ffc Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/j5t4wznc2hjegdh.o b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/j5t4wznc2hjegdh.o new file mode 100644 index 0000000..1b74d40 Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/j5t4wznc2hjegdh.o differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/query-cache.bin b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/query-cache.bin new file mode 100644 index 0000000..ffc38b4 Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/query-cache.bin differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/vq2s0wesukr12ai.o b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/vq2s0wesukr12ai.o new file mode 100644 index 0000000..f618bbe Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/vq2s0wesukr12ai.o differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/work-products.bin b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/work-products.bin new file mode 100644 index 0000000..b8b5976 Binary files /dev/null and b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv-1lrwsg383i1g7/work-products.bin differ diff --git a/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv.lock b/target/debug/incremental/igloo_agent-348xl7h0re5ve/s-fsrb8aa827-1rkmjmv.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/15ct9sb3d2zvrl3c.o b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/15ct9sb3d2zvrl3c.o new file mode 100644 index 0000000..283af02 Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/15ct9sb3d2zvrl3c.o differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/1jzcvwddahhbao3c.o b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/1jzcvwddahhbao3c.o new file mode 100644 index 0000000..7d79d70 Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/1jzcvwddahhbao3c.o differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/2h32xebzos7og0iu.o b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/2h32xebzos7og0iu.o new file mode 100644 index 0000000..c52a8ec Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/2h32xebzos7og0iu.o differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/2lo0izh9db5mxq22.o b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/2lo0izh9db5mxq22.o new file mode 100644 index 0000000..f13a163 Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/2lo0izh9db5mxq22.o differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/4161cayh68ruj6xl.o b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/4161cayh68ruj6xl.o new file mode 100644 index 0000000..5c338fe Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/4161cayh68ruj6xl.o differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/4fjvuzn82w2bxchj.o b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/4fjvuzn82w2bxchj.o new file mode 100644 index 0000000..32746d9 Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/4fjvuzn82w2bxchj.o differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/dep-graph.bin b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/dep-graph.bin new file mode 100644 index 0000000..d8f859b Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/n5f1yaqznu83t4b.o b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/n5f1yaqznu83t4b.o new file mode 100644 index 0000000..5696d43 Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/n5f1yaqznu83t4b.o differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/query-cache.bin b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/query-cache.bin new file mode 100644 index 0000000..4779bbd Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/query-cache.bin differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/work-products.bin b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/work-products.bin new file mode 100644 index 0000000..a12b929 Binary files /dev/null and b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd-33he2x8aunbgd/work-products.bin differ diff --git a/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd.lock b/target/debug/incremental/igloo_agent-3r3act09e2ydz/s-fsrba4mso9-11u3wjd.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/1jt8iv2vcs4rxdll.o b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/1jt8iv2vcs4rxdll.o new file mode 100644 index 0000000..e0fbc16 Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/1jt8iv2vcs4rxdll.o differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/1z3dl8q8cnwulef.o b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/1z3dl8q8cnwulef.o new file mode 100644 index 0000000..b09e5e7 Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/1z3dl8q8cnwulef.o differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/2x18u8gs73vco8xk.o b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/2x18u8gs73vco8xk.o new file mode 100644 index 0000000..502c74d Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/2x18u8gs73vco8xk.o differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/3efd36tih0prj106.o b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/3efd36tih0prj106.o new file mode 100644 index 0000000..a707eb7 Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/3efd36tih0prj106.o differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/3nzlqsegjhc2fvmi.o b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/3nzlqsegjhc2fvmi.o new file mode 100644 index 0000000..bc0bafa Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/3nzlqsegjhc2fvmi.o differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/4fhyhcpod7mdavzi.o b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/4fhyhcpod7mdavzi.o new file mode 100644 index 0000000..ea30767 Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/4fhyhcpod7mdavzi.o differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/dep-graph.bin b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/dep-graph.bin new file mode 100644 index 0000000..280ed3b Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/query-cache.bin b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/query-cache.bin new file mode 100644 index 0000000..16657c4 Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/query-cache.bin differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/seovtcioz5nu8dz.o b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/seovtcioz5nu8dz.o new file mode 100644 index 0000000..70e4d2b Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/seovtcioz5nu8dz.o differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/work-products.bin b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/work-products.bin new file mode 100644 index 0000000..2a1193f Binary files /dev/null and b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq-3pvxwm1nod2kq/work-products.bin differ diff --git a/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq.lock b/target/debug/incremental/igloo_agent-hrxax4y6uu3s/s-fsrbm871a9-fk4djq.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/16hmxqdl9jo6tiwz.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/16hmxqdl9jo6tiwz.o new file mode 100644 index 0000000..611a30c Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/16hmxqdl9jo6tiwz.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/1b2pkw4fg1sazgi.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/1b2pkw4fg1sazgi.o new file mode 100644 index 0000000..6f87a11 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/1b2pkw4fg1sazgi.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/1g7rw4041m76g4y5.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/1g7rw4041m76g4y5.o new file mode 100644 index 0000000..e0c6e1a Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/1g7rw4041m76g4y5.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/315tc7wgrufzvbnk.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/315tc7wgrufzvbnk.o new file mode 100644 index 0000000..2dd9c36 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/315tc7wgrufzvbnk.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/3avnq2rmnr7rxp27.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/3avnq2rmnr7rxp27.o new file mode 100644 index 0000000..de29552 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/3avnq2rmnr7rxp27.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/3xe1uhiaeipvcio6.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/3xe1uhiaeipvcio6.o new file mode 100644 index 0000000..12c45ca Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/3xe1uhiaeipvcio6.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/42e4xpw3mmujab09.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/42e4xpw3mmujab09.o new file mode 100644 index 0000000..58e909e Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/42e4xpw3mmujab09.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/46dgibmoemmzk833.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/46dgibmoemmzk833.o new file mode 100644 index 0000000..5140a8b Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/46dgibmoemmzk833.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/489he87lt0r4svy4.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/489he87lt0r4svy4.o new file mode 100644 index 0000000..1870805 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/489he87lt0r4svy4.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/5fw4qs0ehl012k5g.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/5fw4qs0ehl012k5g.o new file mode 100644 index 0000000..e9e2395 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/5fw4qs0ehl012k5g.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/8x6chcp7brnpp4a.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/8x6chcp7brnpp4a.o new file mode 100644 index 0000000..68b60a8 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/8x6chcp7brnpp4a.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/b1uohca24xvrxwn.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/b1uohca24xvrxwn.o new file mode 100644 index 0000000..e01c3ba Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/b1uohca24xvrxwn.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/dep-graph.bin b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/dep-graph.bin new file mode 100644 index 0000000..2e08351 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/qfxpplgqce4jevt.o b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/qfxpplgqce4jevt.o new file mode 100644 index 0000000..2ee9dd0 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/qfxpplgqce4jevt.o differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/query-cache.bin b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/query-cache.bin new file mode 100644 index 0000000..aded110 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/query-cache.bin differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/work-products.bin b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/work-products.bin new file mode 100644 index 0000000..3209e55 Binary files /dev/null and b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u-3kofbnv7q4epr/work-products.bin differ diff --git a/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u.lock b/target/debug/incremental/igloo_base-26hfpw9cwgo2q/s-fsrg0738yh-1jnqe1u.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/12i8kxn8128xb2i8.o b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/12i8kxn8128xb2i8.o new file mode 100644 index 0000000..a39f412 Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/12i8kxn8128xb2i8.o differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/1vk7wyi4adbkem0.o b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/1vk7wyi4adbkem0.o new file mode 100644 index 0000000..97fb6e8 Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/1vk7wyi4adbkem0.o differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/1zw80h0ybg6qvin9.o b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/1zw80h0ybg6qvin9.o new file mode 100644 index 0000000..b00ef79 Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/1zw80h0ybg6qvin9.o differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/3hvpn09gg84gwmfq.o b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/3hvpn09gg84gwmfq.o new file mode 100644 index 0000000..82cd99b Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/3hvpn09gg84gwmfq.o differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/3leii1rauikudpym.o b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/3leii1rauikudpym.o new file mode 100644 index 0000000..2507bfb Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/3leii1rauikudpym.o differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/48hg9u2pd2i2f0y6.o b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/48hg9u2pd2i2f0y6.o new file mode 100644 index 0000000..814d95f Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/48hg9u2pd2i2f0y6.o differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/4m42zrfs57m2xro1.o b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/4m42zrfs57m2xro1.o new file mode 100644 index 0000000..869060c Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/4m42zrfs57m2xro1.o differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/dep-graph.bin b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/dep-graph.bin new file mode 100644 index 0000000..e95e62d Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/query-cache.bin b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/query-cache.bin new file mode 100644 index 0000000..ed9a49f Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/query-cache.bin differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/work-products.bin b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/work-products.bin new file mode 100644 index 0000000..70d1285 Binary files /dev/null and b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt-e8ipr698z70/work-products.bin differ diff --git a/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt.lock b/target/debug/incremental/igloo_base-h8w08cuaanyy/s-fsrlkaahdj-18egyt.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/13f9og63lo8vn3o6.o b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/13f9og63lo8vn3o6.o new file mode 100644 index 0000000..68eac9a Binary files /dev/null and b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/13f9og63lo8vn3o6.o differ diff --git a/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/26u1o8gdx1vm8fw.o b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/26u1o8gdx1vm8fw.o new file mode 100644 index 0000000..4fbc9b2 Binary files /dev/null and b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/26u1o8gdx1vm8fw.o differ diff --git a/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/3w3ulwgk61hgoxjn.o b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/3w3ulwgk61hgoxjn.o new file mode 100644 index 0000000..d3ad6c8 Binary files /dev/null and b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/3w3ulwgk61hgoxjn.o differ diff --git a/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/5a3klqlozkb1ga4a.o b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/5a3klqlozkb1ga4a.o new file mode 100644 index 0000000..a96523d Binary files /dev/null and b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/5a3klqlozkb1ga4a.o differ diff --git a/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/dep-graph.bin b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/dep-graph.bin new file mode 100644 index 0000000..cf7f6de Binary files /dev/null and b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/query-cache.bin b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/query-cache.bin new file mode 100644 index 0000000..f350258 Binary files /dev/null and b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/query-cache.bin differ diff --git a/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/work-products.bin b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/work-products.bin new file mode 100644 index 0000000..2ea348a Binary files /dev/null and b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw-bw9sormmlip4/work-products.bin differ diff --git a/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw.lock b/target/debug/incremental/igloo_base-to7bauqvlt24/s-fsrfytkb23-1pcp2qw.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/1cx587x7gh491ymd.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/1cx587x7gh491ymd.o new file mode 100644 index 0000000..f41dddc Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/1cx587x7gh491ymd.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/1qyh2og3zo2r0ow6.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/1qyh2og3zo2r0ow6.o new file mode 100644 index 0000000..5e190fd Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/1qyh2og3zo2r0ow6.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/1usin0e7ywizvhvq.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/1usin0e7ywizvhvq.o new file mode 100644 index 0000000..b525fff Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/1usin0e7ywizvhvq.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/2ec8tk1qpox3jogd.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/2ec8tk1qpox3jogd.o new file mode 100644 index 0000000..0d3108c Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/2ec8tk1qpox3jogd.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/3do60atm8d5pr2km.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/3do60atm8d5pr2km.o new file mode 100644 index 0000000..62ca164 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/3do60atm8d5pr2km.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/3ezuq8ohdm13u4ip.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/3ezuq8ohdm13u4ip.o new file mode 100644 index 0000000..1f71db6 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/3ezuq8ohdm13u4ip.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/3zhnm0y5oa0rstz1.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/3zhnm0y5oa0rstz1.o new file mode 100644 index 0000000..a3c7749 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/3zhnm0y5oa0rstz1.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/4bhjn4sc3345qj5a.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/4bhjn4sc3345qj5a.o new file mode 100644 index 0000000..9db7cd9 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/4bhjn4sc3345qj5a.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/4tq9yaxw34srd4t5.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/4tq9yaxw34srd4t5.o new file mode 100644 index 0000000..3c40e49 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/4tq9yaxw34srd4t5.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/dep-graph.bin b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/dep-graph.bin new file mode 100644 index 0000000..ed58310 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/ej3fwfuxpyra5l.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/ej3fwfuxpyra5l.o new file mode 100644 index 0000000..c2ebd44 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/ej3fwfuxpyra5l.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/qtckn9nhe767jwj.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/qtckn9nhe767jwj.o new file mode 100644 index 0000000..ab0b7b1 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/qtckn9nhe767jwj.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/query-cache.bin b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/query-cache.bin new file mode 100644 index 0000000..1fd7230 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/query-cache.bin differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/svwsuaodckeg3vb.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/svwsuaodckeg3vb.o new file mode 100644 index 0000000..893d345 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/svwsuaodckeg3vb.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/uvjmocg6ydq55ih.o b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/uvjmocg6ydq55ih.o new file mode 100644 index 0000000..46aef04 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/uvjmocg6ydq55ih.o differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/work-products.bin b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/work-products.bin new file mode 100644 index 0000000..fcd4a57 Binary files /dev/null and b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6-2t5dnhv7ufhpk/work-products.bin differ diff --git a/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6.lock b/target/debug/incremental/igloo_base-v524z50anmtz/s-fsrmb527gp-shz1w6.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/5cni8phs7mxd60bq.o b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/5cni8phs7mxd60bq.o new file mode 100644 index 0000000..4cca5dc Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/5cni8phs7mxd60bq.o differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/dep-graph.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/dep-graph.bin new file mode 100644 index 0000000..7c9fcba Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/query-cache.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/query-cache.bin new file mode 100644 index 0000000..8fca4e3 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/work-products.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/work-products.bin new file mode 100644 index 0000000..82caa07 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom-1aium10sw1r2b/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom.lock b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsrbm0wpve-lglom.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/5cni8phs7mxd60bq.o b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/5cni8phs7mxd60bq.o new file mode 100644 index 0000000..4cca5dc Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/5cni8phs7mxd60bq.o differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/dep-graph.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/dep-graph.bin new file mode 100644 index 0000000..7c9fcba Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/query-cache.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/query-cache.bin new file mode 100644 index 0000000..8fca4e3 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/work-products.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/work-products.bin new file mode 100644 index 0000000..82caa07 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x-working/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x.lock b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresd9r9r-47b81x.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/5cni8phs7mxd60bq.o b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/5cni8phs7mxd60bq.o new file mode 100644 index 0000000..4cca5dc Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/5cni8phs7mxd60bq.o differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/dep-graph.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/dep-graph.bin new file mode 100644 index 0000000..7c9fcba Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/query-cache.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/query-cache.bin new file mode 100644 index 0000000..8fca4e3 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/work-products.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/work-products.bin new file mode 100644 index 0000000..82caa07 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12-working/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12.lock b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresgafhy-10wiw12.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/5cni8phs7mxd60bq.o b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/5cni8phs7mxd60bq.o new file mode 100644 index 0000000..4cca5dc Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/5cni8phs7mxd60bq.o differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/dep-graph.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/dep-graph.bin new file mode 100644 index 0000000..7c9fcba Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/query-cache.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/query-cache.bin new file mode 100644 index 0000000..8fca4e3 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/work-products.bin b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/work-products.bin new file mode 100644 index 0000000..82caa07 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162-working/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162.lock b/target/debug/incremental/igloo_cli-1bb9x86x4s15z/s-fsresi4zi2-mov162.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/1ctwrdkt32ypn4tc.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/1ctwrdkt32ypn4tc.o new file mode 100644 index 0000000..7d2ca5f Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/1ctwrdkt32ypn4tc.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/1g4gvxg2hrpbwyn2.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/1g4gvxg2hrpbwyn2.o new file mode 100644 index 0000000..0d1995b Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/1g4gvxg2hrpbwyn2.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/1iqskglzllvotcja.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/1iqskglzllvotcja.o new file mode 100644 index 0000000..1589767 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/1iqskglzllvotcja.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/29bl1d0zwja0tbhh.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/29bl1d0zwja0tbhh.o new file mode 100644 index 0000000..98d6472 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/29bl1d0zwja0tbhh.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/2imd0rer5vgyc0i3.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/2imd0rer5vgyc0i3.o new file mode 100644 index 0000000..b09af8f Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/2imd0rer5vgyc0i3.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/2sz1t27m5uvck4ab.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/2sz1t27m5uvck4ab.o new file mode 100644 index 0000000..dff733e Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/2sz1t27m5uvck4ab.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/3dyct70p7q1zxbmw.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/3dyct70p7q1zxbmw.o new file mode 100644 index 0000000..2490905 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/3dyct70p7q1zxbmw.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/44uqi82jf0dh9ktg.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/44uqi82jf0dh9ktg.o new file mode 100644 index 0000000..79ffab6 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/44uqi82jf0dh9ktg.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/517wjxj0s0wc02gf.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/517wjxj0s0wc02gf.o new file mode 100644 index 0000000..089e32f Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/517wjxj0s0wc02gf.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/58m8cxs5o558d28o.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/58m8cxs5o558d28o.o new file mode 100644 index 0000000..bcfdb89 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/58m8cxs5o558d28o.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/dep-graph.bin b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/dep-graph.bin new file mode 100644 index 0000000..fc2accc Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/hqpezo8e3qlut2z.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/hqpezo8e3qlut2z.o new file mode 100644 index 0000000..c41531a Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/hqpezo8e3qlut2z.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/ldrb37z52t0e5nu.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/ldrb37z52t0e5nu.o new file mode 100644 index 0000000..1143718 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/ldrb37z52t0e5nu.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/query-cache.bin b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/query-cache.bin new file mode 100644 index 0000000..cefb860 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/re71k0mddgn86ns.o b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/re71k0mddgn86ns.o new file mode 100644 index 0000000..07bf400 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/re71k0mddgn86ns.o differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/work-products.bin b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/work-products.bin new file mode 100644 index 0000000..7c6ed53 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3-3ahe5g9ud639e/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3.lock b/target/debug/incremental/igloo_cli-1dxf53cvj1xbw/s-fsrb9fbo37-bnp0t3.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/33g6m8iadur3tic4.o b/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/33g6m8iadur3tic4.o new file mode 100644 index 0000000..0cae395 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/33g6m8iadur3tic4.o differ diff --git a/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/dep-graph.bin b/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/dep-graph.bin new file mode 100644 index 0000000..9cf128c Binary files /dev/null and b/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/query-cache.bin b/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/query-cache.bin new file mode 100644 index 0000000..2e0beda Binary files /dev/null and b/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/work-products.bin b/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/work-products.bin new file mode 100644 index 0000000..16b9025 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c-3dofkyhafrq3y/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c.lock b/target/debug/incremental/igloo_cli-1pho0ys7fc8xb/s-fsrb9h6xf8-1cbig3c.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/1qr3yyxggh1vgq8.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/1qr3yyxggh1vgq8.o new file mode 100644 index 0000000..7a6e67a Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/1qr3yyxggh1vgq8.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/20pngwf1obhysxy9.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/20pngwf1obhysxy9.o new file mode 100644 index 0000000..9f2c6bd Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/20pngwf1obhysxy9.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/2bht8jsf6y136mrb.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/2bht8jsf6y136mrb.o new file mode 100644 index 0000000..baba3d7 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/2bht8jsf6y136mrb.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/2jrbejuklpho52c4.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/2jrbejuklpho52c4.o new file mode 100644 index 0000000..425c0aa Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/2jrbejuklpho52c4.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/2v5omt3qk17byknl.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/2v5omt3qk17byknl.o new file mode 100644 index 0000000..bbe33fd Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/2v5omt3qk17byknl.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/3ptez78goeyblzi1.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/3ptez78goeyblzi1.o new file mode 100644 index 0000000..492e0f1 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/3ptez78goeyblzi1.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/3wtwb17ea4347usn.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/3wtwb17ea4347usn.o new file mode 100644 index 0000000..3dae4f3 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/3wtwb17ea4347usn.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/455amomhmry9xcxl.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/455amomhmry9xcxl.o new file mode 100644 index 0000000..73a4684 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/455amomhmry9xcxl.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/4khr450zyssov4h9.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/4khr450zyssov4h9.o new file mode 100644 index 0000000..9264f81 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/4khr450zyssov4h9.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/54hok4c0ichn6w6y.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/54hok4c0ichn6w6y.o new file mode 100644 index 0000000..d241208 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/54hok4c0ichn6w6y.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/5aci5u9nw1z2exya.o b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/5aci5u9nw1z2exya.o new file mode 100644 index 0000000..ac70509 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/5aci5u9nw1z2exya.o differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/dep-graph.bin b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/dep-graph.bin new file mode 100644 index 0000000..8b48539 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/query-cache.bin b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/query-cache.bin new file mode 100644 index 0000000..f1b95b0 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/work-products.bin b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/work-products.bin new file mode 100644 index 0000000..74cab47 Binary files /dev/null and b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i-166giewe0p452/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i.lock b/target/debug/incremental/igloo_cli-1ty1eugmh6ojx/s-fsrg996iok-ff8r7i.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/195zwb4lssavnzn.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/195zwb4lssavnzn.o new file mode 100644 index 0000000..e66acdd Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/195zwb4lssavnzn.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/1acfvgpwpg6i6lrw.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/1acfvgpwpg6i6lrw.o new file mode 100644 index 0000000..1cdfb7c Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/1acfvgpwpg6i6lrw.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/1fmbpsyc9yiexvyw.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/1fmbpsyc9yiexvyw.o new file mode 100644 index 0000000..7425d9b Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/1fmbpsyc9yiexvyw.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/1hnigw4n4xlunxcg.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/1hnigw4n4xlunxcg.o new file mode 100644 index 0000000..39162c2 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/1hnigw4n4xlunxcg.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/2vo3kyo25tf2sxvl.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/2vo3kyo25tf2sxvl.o new file mode 100644 index 0000000..f4435a9 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/2vo3kyo25tf2sxvl.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/2zxqeeusrqkt0kve.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/2zxqeeusrqkt0kve.o new file mode 100644 index 0000000..324da10 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/2zxqeeusrqkt0kve.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/34vucjbm0u8o2csr.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/34vucjbm0u8o2csr.o new file mode 100644 index 0000000..1774387 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/34vucjbm0u8o2csr.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/3lpi4mjelhdpz5ai.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/3lpi4mjelhdpz5ai.o new file mode 100644 index 0000000..b10d3eb Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/3lpi4mjelhdpz5ai.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/4feknhpjwdxxa9x2.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/4feknhpjwdxxa9x2.o new file mode 100644 index 0000000..58ece62 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/4feknhpjwdxxa9x2.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/5c7kxb89x1oj3u8x.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/5c7kxb89x1oj3u8x.o new file mode 100644 index 0000000..e83ae21 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/5c7kxb89x1oj3u8x.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/dep-graph.bin b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/dep-graph.bin new file mode 100644 index 0000000..4214d19 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/m5zqhr80vn57vgs.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/m5zqhr80vn57vgs.o new file mode 100644 index 0000000..9a0d87b Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/m5zqhr80vn57vgs.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/query-cache.bin b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/query-cache.bin new file mode 100644 index 0000000..7886bd0 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/rfxl4klakh5fxn9.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/rfxl4klakh5fxn9.o new file mode 100644 index 0000000..e9fdabd Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/rfxl4klakh5fxn9.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/work-products.bin b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/work-products.bin new file mode 100644 index 0000000..ed8166e Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/xpnqbfjtyay1vbj.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/xpnqbfjtyay1vbj.o new file mode 100644 index 0000000..857a923 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq-3czj3hef6enmk/xpnqbfjtyay1vbj.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq.lock b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrbm05l5o-1egeluq.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/195zwb4lssavnzn.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/195zwb4lssavnzn.o new file mode 100644 index 0000000..e66acdd Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/195zwb4lssavnzn.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/1acfvgpwpg6i6lrw.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/1acfvgpwpg6i6lrw.o new file mode 100644 index 0000000..1cdfb7c Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/1acfvgpwpg6i6lrw.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/1fmbpsyc9yiexvyw.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/1fmbpsyc9yiexvyw.o new file mode 100644 index 0000000..7425d9b Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/1fmbpsyc9yiexvyw.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/1hnigw4n4xlunxcg.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/1hnigw4n4xlunxcg.o new file mode 100644 index 0000000..39162c2 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/1hnigw4n4xlunxcg.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/2vo3kyo25tf2sxvl.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/2vo3kyo25tf2sxvl.o new file mode 100644 index 0000000..f4435a9 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/2vo3kyo25tf2sxvl.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/2zxqeeusrqkt0kve.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/2zxqeeusrqkt0kve.o new file mode 100644 index 0000000..324da10 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/2zxqeeusrqkt0kve.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/34vucjbm0u8o2csr.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/34vucjbm0u8o2csr.o new file mode 100644 index 0000000..1774387 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/34vucjbm0u8o2csr.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/3lpi4mjelhdpz5ai.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/3lpi4mjelhdpz5ai.o new file mode 100644 index 0000000..b10d3eb Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/3lpi4mjelhdpz5ai.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/4feknhpjwdxxa9x2.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/4feknhpjwdxxa9x2.o new file mode 100644 index 0000000..58ece62 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/4feknhpjwdxxa9x2.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/5c7kxb89x1oj3u8x.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/5c7kxb89x1oj3u8x.o new file mode 100644 index 0000000..e83ae21 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/5c7kxb89x1oj3u8x.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/dep-graph.bin b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/dep-graph.bin new file mode 100644 index 0000000..4214d19 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/m5zqhr80vn57vgs.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/m5zqhr80vn57vgs.o new file mode 100644 index 0000000..9a0d87b Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/m5zqhr80vn57vgs.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/query-cache.bin b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/query-cache.bin new file mode 100644 index 0000000..7886bd0 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/rfxl4klakh5fxn9.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/rfxl4klakh5fxn9.o new file mode 100644 index 0000000..e9fdabd Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/rfxl4klakh5fxn9.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/work-products.bin b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/work-products.bin new file mode 100644 index 0000000..ed8166e Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/xpnqbfjtyay1vbj.o b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/xpnqbfjtyay1vbj.o new file mode 100644 index 0000000..857a923 Binary files /dev/null and b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim-working/xpnqbfjtyay1vbj.o differ diff --git a/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim.lock b/target/debug/incremental/igloo_cli-27lx6cznznwv7/s-fsrceyh9rr-5jpvim.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1483edzjy27egljg.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1483edzjy27egljg.o new file mode 100644 index 0000000..9f31bfd Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1483edzjy27egljg.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1a5e1rlcxc3ilhxc.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1a5e1rlcxc3ilhxc.o new file mode 100644 index 0000000..29297cc Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1a5e1rlcxc3ilhxc.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1mq2sslw8ggepoxy.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1mq2sslw8ggepoxy.o new file mode 100644 index 0000000..9e72df7 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1mq2sslw8ggepoxy.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1zojok2spklgz9bo.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1zojok2spklgz9bo.o new file mode 100644 index 0000000..4efa1a0 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/1zojok2spklgz9bo.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/20b46wejkn7nz1yv.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/20b46wejkn7nz1yv.o new file mode 100644 index 0000000..c062260 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/20b46wejkn7nz1yv.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/27xgxrc6m7f7sbbc.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/27xgxrc6m7f7sbbc.o new file mode 100644 index 0000000..aeb91c5 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/27xgxrc6m7f7sbbc.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/3mwovqi1l5vx8hd9.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/3mwovqi1l5vx8hd9.o new file mode 100644 index 0000000..ecd4ab6 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/3mwovqi1l5vx8hd9.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/3vsgl3kh4yyjotb.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/3vsgl3kh4yyjotb.o new file mode 100644 index 0000000..dcaf156 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/3vsgl3kh4yyjotb.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/3xq9d1mabkiu2kc4.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/3xq9d1mabkiu2kc4.o new file mode 100644 index 0000000..d40e9ac Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/3xq9d1mabkiu2kc4.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/46vy63wyrckznbmv.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/46vy63wyrckznbmv.o new file mode 100644 index 0000000..4f6d461 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/46vy63wyrckznbmv.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/4hjkk9m6zjjtner7.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/4hjkk9m6zjjtner7.o new file mode 100644 index 0000000..045436c Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/4hjkk9m6zjjtner7.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/4idrgnc5e4gj8i1n.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/4idrgnc5e4gj8i1n.o new file mode 100644 index 0000000..b5e6898 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/4idrgnc5e4gj8i1n.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/4xkyhhnhilzr790o.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/4xkyhhnhilzr790o.o new file mode 100644 index 0000000..c1330fb Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/4xkyhhnhilzr790o.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/58zx5s8837za5ez6.o b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/58zx5s8837za5ez6.o new file mode 100644 index 0000000..37bba0f Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/58zx5s8837za5ez6.o differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/dep-graph.bin b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/dep-graph.bin new file mode 100644 index 0000000..746aef1 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/query-cache.bin b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/query-cache.bin new file mode 100644 index 0000000..9a16bf3 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/work-products.bin b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/work-products.bin new file mode 100644 index 0000000..d0b0297 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf-2tdvpfd88p2lx/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf.lock b/target/debug/incremental/igloo_cli-3e88r5dy4pbl8/s-fsrn439gk4-v2hjhf.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/2hr99zrr49eovssz.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/2hr99zrr49eovssz.o new file mode 100644 index 0000000..efbadfa Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/2hr99zrr49eovssz.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/2i3ydnzgi8l98tzi.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/2i3ydnzgi8l98tzi.o new file mode 100644 index 0000000..2a1a4b3 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/2i3ydnzgi8l98tzi.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/2i60c4hgti93arr5.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/2i60c4hgti93arr5.o new file mode 100644 index 0000000..62e1a81 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/2i60c4hgti93arr5.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/338g2mcwullphq6d.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/338g2mcwullphq6d.o new file mode 100644 index 0000000..15d919b Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/338g2mcwullphq6d.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/4uyxf1hmf91n6xzn.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/4uyxf1hmf91n6xzn.o new file mode 100644 index 0000000..fdb51a6 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/4uyxf1hmf91n6xzn.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/51jn6czla6i0bb7f.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/51jn6czla6i0bb7f.o new file mode 100644 index 0000000..ee87f37 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/51jn6czla6i0bb7f.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/58d53adi4ftpean1.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/58d53adi4ftpean1.o new file mode 100644 index 0000000..e7a7750 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/58d53adi4ftpean1.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/dep-graph.bin b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/dep-graph.bin new file mode 100644 index 0000000..4f14108 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/o9tk8of4muj3ac8.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/o9tk8of4muj3ac8.o new file mode 100644 index 0000000..9ace547 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/o9tk8of4muj3ac8.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/query-cache.bin b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/query-cache.bin new file mode 100644 index 0000000..49c9763 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/riu1antelwssp3b.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/riu1antelwssp3b.o new file mode 100644 index 0000000..f77e50d Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/riu1antelwssp3b.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/t3gb7i9byq3zaj3.o b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/t3gb7i9byq3zaj3.o new file mode 100644 index 0000000..34078e0 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/t3gb7i9byq3zaj3.o differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/work-products.bin b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/work-products.bin new file mode 100644 index 0000000..63c1944 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq-abkc0pgz357e/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq.lock b/target/debug/incremental/igloo_cli-3rk71qu2iz2cb/s-fsrn42lm1d-37h3mq.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/1ft7nxztwwtzdop.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/1ft7nxztwwtzdop.o new file mode 100644 index 0000000..0514665 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/1ft7nxztwwtzdop.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/1q7bp9bckuq8a4eo.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/1q7bp9bckuq8a4eo.o new file mode 100644 index 0000000..3caa6fd Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/1q7bp9bckuq8a4eo.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/1xbq3gjae7c0sdyb.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/1xbq3gjae7c0sdyb.o new file mode 100644 index 0000000..f43b19c Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/1xbq3gjae7c0sdyb.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/24ynq965jbqrq0gu.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/24ynq965jbqrq0gu.o new file mode 100644 index 0000000..e4f5f86 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/24ynq965jbqrq0gu.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/39pv3a6okqtlnc0h.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/39pv3a6okqtlnc0h.o new file mode 100644 index 0000000..d0ddf3e Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/39pv3a6okqtlnc0h.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/3cc9vg5kagsra2js.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/3cc9vg5kagsra2js.o new file mode 100644 index 0000000..732edb0 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/3cc9vg5kagsra2js.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/3j7aushzsmk6b6hh.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/3j7aushzsmk6b6hh.o new file mode 100644 index 0000000..02d58e4 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/3j7aushzsmk6b6hh.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/4kbcf6otei961nz4.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/4kbcf6otei961nz4.o new file mode 100644 index 0000000..13e7cfb Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/4kbcf6otei961nz4.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/4wznb23u5pndutxh.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/4wznb23u5pndutxh.o new file mode 100644 index 0000000..d8f0f19 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/4wznb23u5pndutxh.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/54yxixnzi1sdxnj0.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/54yxixnzi1sdxnj0.o new file mode 100644 index 0000000..4da2aad Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/54yxixnzi1sdxnj0.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/dep-graph.bin b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/dep-graph.bin new file mode 100644 index 0000000..1e4ea2a Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/query-cache.bin b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/query-cache.bin new file mode 100644 index 0000000..dbc23c8 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/work-products.bin b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/work-products.bin new file mode 100644 index 0000000..203da94 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b-3ro1s15agd9qc/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b.lock b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsreymmv47-1b4fp2b.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/1ft7nxztwwtzdop.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/1ft7nxztwwtzdop.o new file mode 100644 index 0000000..0514665 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/1ft7nxztwwtzdop.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/1q7bp9bckuq8a4eo.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/1q7bp9bckuq8a4eo.o new file mode 100644 index 0000000..3caa6fd Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/1q7bp9bckuq8a4eo.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/1xbq3gjae7c0sdyb.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/1xbq3gjae7c0sdyb.o new file mode 100644 index 0000000..f43b19c Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/1xbq3gjae7c0sdyb.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/24ynq965jbqrq0gu.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/24ynq965jbqrq0gu.o new file mode 100644 index 0000000..e4f5f86 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/24ynq965jbqrq0gu.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/39pv3a6okqtlnc0h.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/39pv3a6okqtlnc0h.o new file mode 100644 index 0000000..d0ddf3e Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/39pv3a6okqtlnc0h.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/3cc9vg5kagsra2js.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/3cc9vg5kagsra2js.o new file mode 100644 index 0000000..732edb0 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/3cc9vg5kagsra2js.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/3j7aushzsmk6b6hh.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/3j7aushzsmk6b6hh.o new file mode 100644 index 0000000..02d58e4 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/3j7aushzsmk6b6hh.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/4kbcf6otei961nz4.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/4kbcf6otei961nz4.o new file mode 100644 index 0000000..13e7cfb Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/4kbcf6otei961nz4.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/4wznb23u5pndutxh.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/4wznb23u5pndutxh.o new file mode 100644 index 0000000..d8f0f19 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/4wznb23u5pndutxh.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/54yxixnzi1sdxnj0.o b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/54yxixnzi1sdxnj0.o new file mode 100644 index 0000000..4da2aad Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/54yxixnzi1sdxnj0.o differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/dep-graph.bin b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/dep-graph.bin new file mode 100644 index 0000000..1e4ea2a Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/query-cache.bin b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/query-cache.bin new file mode 100644 index 0000000..dbc23c8 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/work-products.bin b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/work-products.bin new file mode 100644 index 0000000..203da94 Binary files /dev/null and b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj-working/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj.lock b/target/debug/incremental/igloo_cli-3so2jhwlaemku/s-fsrkmk7mab-1r8nxvj.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/15bs7nhw62n9xj9s.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/15bs7nhw62n9xj9s.o new file mode 100644 index 0000000..5133713 Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/15bs7nhw62n9xj9s.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/18lid90qz1k2d3jl.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/18lid90qz1k2d3jl.o new file mode 100644 index 0000000..933ed65 Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/18lid90qz1k2d3jl.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/1m6ee2vn4xgear5l.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/1m6ee2vn4xgear5l.o new file mode 100644 index 0000000..5556417 Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/1m6ee2vn4xgear5l.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/1ru3m6c0ubd6k478.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/1ru3m6c0ubd6k478.o new file mode 100644 index 0000000..2ca9bce Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/1ru3m6c0ubd6k478.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/1u1k1w3hp2nw5vzn.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/1u1k1w3hp2nw5vzn.o new file mode 100644 index 0000000..100d738 Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/1u1k1w3hp2nw5vzn.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/44tb9z6h2kl547s2.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/44tb9z6h2kl547s2.o new file mode 100644 index 0000000..890e45a Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/44tb9z6h2kl547s2.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/4lxx519qgcnk8vpk.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/4lxx519qgcnk8vpk.o new file mode 100644 index 0000000..a359082 Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/4lxx519qgcnk8vpk.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/cdnier91jzfuo7w.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/cdnier91jzfuo7w.o new file mode 100644 index 0000000..a80d47a Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/cdnier91jzfuo7w.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/dep-graph.bin b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/dep-graph.bin new file mode 100644 index 0000000..d9d6a92 Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/ojusndu0zi68o6w.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/ojusndu0zi68o6w.o new file mode 100644 index 0000000..743715a Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/ojusndu0zi68o6w.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/query-cache.bin b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/query-cache.bin new file mode 100644 index 0000000..5d4a888 Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/query-cache.bin differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/ux1igenlc56m6d9.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/ux1igenlc56m6d9.o new file mode 100644 index 0000000..fb5947a Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/ux1igenlc56m6d9.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/work-products.bin b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/work-products.bin new file mode 100644 index 0000000..261262e Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/work-products.bin differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/y7omzhu743qzstz.o b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/y7omzhu743qzstz.o new file mode 100644 index 0000000..15b19ab Binary files /dev/null and b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9-3jtvdszwbus4v/y7omzhu743qzstz.o differ diff --git a/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9.lock b/target/debug/incremental/igloo_cli-jbqccu2xir6e/s-fsrezx3gi1-1ds6kq9.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/13fgl3zpnu8nmxej.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/13fgl3zpnu8nmxej.o new file mode 100644 index 0000000..2940796 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/13fgl3zpnu8nmxej.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/17wbkkhrz4if8knd.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/17wbkkhrz4if8knd.o new file mode 100644 index 0000000..47cbd12 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/17wbkkhrz4if8knd.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/18n25dqm6j9jq92y.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/18n25dqm6j9jq92y.o new file mode 100644 index 0000000..65d164c Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/18n25dqm6j9jq92y.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1afvoybxm447iav6.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1afvoybxm447iav6.o new file mode 100644 index 0000000..9a8f28f Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1afvoybxm447iav6.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1cfxgss0yow0ylor.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1cfxgss0yow0ylor.o new file mode 100644 index 0000000..25d6467 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1cfxgss0yow0ylor.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1dvfgiy4wo5oy4d0.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1dvfgiy4wo5oy4d0.o new file mode 100644 index 0000000..6a7a7e4 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1dvfgiy4wo5oy4d0.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1epkqxar0wa66xwv.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1epkqxar0wa66xwv.o new file mode 100644 index 0000000..36b5144 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1epkqxar0wa66xwv.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1r5r2qk8o1od1btz.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1r5r2qk8o1od1btz.o new file mode 100644 index 0000000..703c1d6 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1r5r2qk8o1od1btz.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1ru7sgr0ne5geks6.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1ru7sgr0ne5geks6.o new file mode 100644 index 0000000..431d0fc Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1ru7sgr0ne5geks6.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1sxe2mecnvlryozg.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1sxe2mecnvlryozg.o new file mode 100644 index 0000000..4e94982 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/1sxe2mecnvlryozg.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/20c9521dkki3zu3w.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/20c9521dkki3zu3w.o new file mode 100644 index 0000000..34ce364 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/20c9521dkki3zu3w.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/20gpcyhul5i1or3s.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/20gpcyhul5i1or3s.o new file mode 100644 index 0000000..b567649 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/20gpcyhul5i1or3s.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/26p14iya7m8y8c9p.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/26p14iya7m8y8c9p.o new file mode 100644 index 0000000..375e5fc Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/26p14iya7m8y8c9p.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2859hzuajsi2jek1.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2859hzuajsi2jek1.o new file mode 100644 index 0000000..3bed7b5 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2859hzuajsi2jek1.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2i2akdyr5hqoo9ws.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2i2akdyr5hqoo9ws.o new file mode 100644 index 0000000..01dbc25 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2i2akdyr5hqoo9ws.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2j7idebmqm3gthfk.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2j7idebmqm3gthfk.o new file mode 100644 index 0000000..0655d22 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2j7idebmqm3gthfk.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2obf686btv8kt8k9.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2obf686btv8kt8k9.o new file mode 100644 index 0000000..640b447 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2obf686btv8kt8k9.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2qhfbbhw7x4psfw.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2qhfbbhw7x4psfw.o new file mode 100644 index 0000000..e5216f2 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/2qhfbbhw7x4psfw.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/375xh0fvy2fz4srd.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/375xh0fvy2fz4srd.o new file mode 100644 index 0000000..6ec53db Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/375xh0fvy2fz4srd.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/39d41gwqo1hueur.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/39d41gwqo1hueur.o new file mode 100644 index 0000000..34c5833 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/39d41gwqo1hueur.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/39rerzlka5j7xa70.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/39rerzlka5j7xa70.o new file mode 100644 index 0000000..1995b6f Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/39rerzlka5j7xa70.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3f6m2fjc2xbijhpk.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3f6m2fjc2xbijhpk.o new file mode 100644 index 0000000..9fcca31 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3f6m2fjc2xbijhpk.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3j3uh6btg02crq0w.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3j3uh6btg02crq0w.o new file mode 100644 index 0000000..df19ad0 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3j3uh6btg02crq0w.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3j5hfhuml8ajwp4t.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3j5hfhuml8ajwp4t.o new file mode 100644 index 0000000..0332576 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3j5hfhuml8ajwp4t.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3ksfpe1zrzhj4vy7.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3ksfpe1zrzhj4vy7.o new file mode 100644 index 0000000..3b782a4 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3ksfpe1zrzhj4vy7.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3m21lqgoak72vmtn.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3m21lqgoak72vmtn.o new file mode 100644 index 0000000..1e7855b Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3m21lqgoak72vmtn.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3o5fd8u607heydb3.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3o5fd8u607heydb3.o new file mode 100644 index 0000000..4ff2386 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3o5fd8u607heydb3.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3vylsnr2yfsueq1a.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3vylsnr2yfsueq1a.o new file mode 100644 index 0000000..156395a Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3vylsnr2yfsueq1a.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3ym6cfnnz8eqps55.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3ym6cfnnz8eqps55.o new file mode 100644 index 0000000..ed6e063 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/3ym6cfnnz8eqps55.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/42dmwq888mm6l0ur.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/42dmwq888mm6l0ur.o new file mode 100644 index 0000000..8315b99 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/42dmwq888mm6l0ur.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/456ibtb901w88hgk.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/456ibtb901w88hgk.o new file mode 100644 index 0000000..3c23b6e Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/456ibtb901w88hgk.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/48iac4n7hqpd9m36.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/48iac4n7hqpd9m36.o new file mode 100644 index 0000000..fcbb85f Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/48iac4n7hqpd9m36.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/49ha2nlnpl8ho01q.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/49ha2nlnpl8ho01q.o new file mode 100644 index 0000000..9b05425 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/49ha2nlnpl8ho01q.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/49jwlyaprc9xlbwj.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/49jwlyaprc9xlbwj.o new file mode 100644 index 0000000..b1a58bd Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/49jwlyaprc9xlbwj.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4az1iszwvdlcl7yl.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4az1iszwvdlcl7yl.o new file mode 100644 index 0000000..d67874a Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4az1iszwvdlcl7yl.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4cwmghvczpetrf7n.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4cwmghvczpetrf7n.o new file mode 100644 index 0000000..2e7564c Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4cwmghvczpetrf7n.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4h2uj0kd4xbbutj7.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4h2uj0kd4xbbutj7.o new file mode 100644 index 0000000..c846603 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4h2uj0kd4xbbutj7.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4ljez1qoymyssn01.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4ljez1qoymyssn01.o new file mode 100644 index 0000000..865b695 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/4ljez1qoymyssn01.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/51gtahfej8lf31b7.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/51gtahfej8lf31b7.o new file mode 100644 index 0000000..7c83283 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/51gtahfej8lf31b7.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/52ylvgb5qkyaq07n.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/52ylvgb5qkyaq07n.o new file mode 100644 index 0000000..176c50a Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/52ylvgb5qkyaq07n.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/53iej1aguxscdpvf.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/53iej1aguxscdpvf.o new file mode 100644 index 0000000..468552e Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/53iej1aguxscdpvf.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/54qu6tqo7hzk62ac.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/54qu6tqo7hzk62ac.o new file mode 100644 index 0000000..8839825 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/54qu6tqo7hzk62ac.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/557a6h3s9dw1x82f.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/557a6h3s9dw1x82f.o new file mode 100644 index 0000000..62c9bfd Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/557a6h3s9dw1x82f.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/58bh8ddc3dcd38k2.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/58bh8ddc3dcd38k2.o new file mode 100644 index 0000000..04dcd5c Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/58bh8ddc3dcd38k2.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/8un6yg6cli8tnqe.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/8un6yg6cli8tnqe.o new file mode 100644 index 0000000..7983a8e Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/8un6yg6cli8tnqe.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/a24ta54bnyz8gy3.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/a24ta54bnyz8gy3.o new file mode 100644 index 0000000..1d8a062 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/a24ta54bnyz8gy3.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/bq1aa8x5maiattq.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/bq1aa8x5maiattq.o new file mode 100644 index 0000000..54209da Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/bq1aa8x5maiattq.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/dep-graph.bin b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/dep-graph.bin new file mode 100644 index 0000000..63b7546 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/i3hz7zra92hewmg.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/i3hz7zra92hewmg.o new file mode 100644 index 0000000..4965c64 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/i3hz7zra92hewmg.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/iotnml95eqpsccy.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/iotnml95eqpsccy.o new file mode 100644 index 0000000..74614a9 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/iotnml95eqpsccy.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/q8tflorllgoxjpw.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/q8tflorllgoxjpw.o new file mode 100644 index 0000000..f56092b Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/q8tflorllgoxjpw.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/query-cache.bin b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/query-cache.bin new file mode 100644 index 0000000..28a8dac Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/query-cache.bin differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/uiyorq1id3ladev.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/uiyorq1id3ladev.o new file mode 100644 index 0000000..61db5c1 Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/uiyorq1id3ladev.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/uqvdtwidb5hjl74.o b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/uqvdtwidb5hjl74.o new file mode 100644 index 0000000..d6ba01d Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/uqvdtwidb5hjl74.o differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/work-products.bin b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/work-products.bin new file mode 100644 index 0000000..b4b50dc Binary files /dev/null and b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4-158tewwsrqkxa/work-products.bin differ diff --git a/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4.lock b/target/debug/incremental/igloo_core-1a1lkxjmhvoth/s-fsrn9cbv2y-cjd2c4.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/132esggxh6ezczlq.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/132esggxh6ezczlq.o new file mode 100644 index 0000000..752f367 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/132esggxh6ezczlq.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/1dcqd4fhnpkg1sdr.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/1dcqd4fhnpkg1sdr.o new file mode 100644 index 0000000..6f9b5a3 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/1dcqd4fhnpkg1sdr.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/1dvuye7a8vnn60gs.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/1dvuye7a8vnn60gs.o new file mode 100644 index 0000000..35be1cb Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/1dvuye7a8vnn60gs.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/1izbykskyc5cdgk6.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/1izbykskyc5cdgk6.o new file mode 100644 index 0000000..5f2c193 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/1izbykskyc5cdgk6.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/2xtwqx92vxzp83y4.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/2xtwqx92vxzp83y4.o new file mode 100644 index 0000000..1127bd6 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/2xtwqx92vxzp83y4.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/33k5wywwschm61au.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/33k5wywwschm61au.o new file mode 100644 index 0000000..3a93daf Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/33k5wywwschm61au.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/3ctq4wybreq3ub3s.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/3ctq4wybreq3ub3s.o new file mode 100644 index 0000000..74ce7c3 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/3ctq4wybreq3ub3s.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/3ortnm54w50tq41g.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/3ortnm54w50tq41g.o new file mode 100644 index 0000000..cbe3885 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/3ortnm54w50tq41g.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/3tq8dg0c3plh4cj2.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/3tq8dg0c3plh4cj2.o new file mode 100644 index 0000000..f0f95e6 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/3tq8dg0c3plh4cj2.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/46dyt2ixcod3xim.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/46dyt2ixcod3xim.o new file mode 100644 index 0000000..4f396f4 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/46dyt2ixcod3xim.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/49kxk0bwtehpiuy2.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/49kxk0bwtehpiuy2.o new file mode 100644 index 0000000..3c12ac9 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/49kxk0bwtehpiuy2.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/4agf2s1rgg970wba.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/4agf2s1rgg970wba.o new file mode 100644 index 0000000..f717376 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/4agf2s1rgg970wba.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/dep-graph.bin b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/dep-graph.bin new file mode 100644 index 0000000..30d337c Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/query-cache.bin b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/query-cache.bin new file mode 100644 index 0000000..a108c92 Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/query-cache.bin differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/work-products.bin b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/work-products.bin new file mode 100644 index 0000000..751bf0f Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/work-products.bin differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/yw5if5i3u6a13qi.o b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/yw5if5i3u6a13qi.o new file mode 100644 index 0000000..acf0b5f Binary files /dev/null and b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp-ojiejgzn46nc/yw5if5i3u6a13qi.o differ diff --git a/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp.lock b/target/debug/incremental/igloo_core-1ito332n1p27h/s-fsrb9nxazg-1jq90fp.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/2bzfqfbitxl5adbx.o b/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/2bzfqfbitxl5adbx.o new file mode 100644 index 0000000..953b96e Binary files /dev/null and b/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/2bzfqfbitxl5adbx.o differ diff --git a/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/dep-graph.bin b/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/dep-graph.bin new file mode 100644 index 0000000..3260796 Binary files /dev/null and b/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/query-cache.bin b/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/query-cache.bin new file mode 100644 index 0000000..30ac352 Binary files /dev/null and b/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/query-cache.bin differ diff --git a/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/work-products.bin b/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/work-products.bin new file mode 100644 index 0000000..e44bacd Binary files /dev/null and b/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh-3f9ywlamiaoww/work-products.bin differ diff --git a/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh.lock b/target/debug/incremental/igloo_core-1uinb4dbwkdym/s-fsrbcl7bkv-1akbyvh.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/10efdl4bcm0s93u3.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/10efdl4bcm0s93u3.o new file mode 100644 index 0000000..49b8ad1 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/10efdl4bcm0s93u3.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/14q6pqwr0jmjp6mo.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/14q6pqwr0jmjp6mo.o new file mode 100644 index 0000000..0071352 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/14q6pqwr0jmjp6mo.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/19f2f2r3jo06fepv.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/19f2f2r3jo06fepv.o new file mode 100644 index 0000000..9c6e6de Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/19f2f2r3jo06fepv.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/2dnek8wrjhjp3ykp.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/2dnek8wrjhjp3ykp.o new file mode 100644 index 0000000..a61e8ab Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/2dnek8wrjhjp3ykp.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/2h3zz4xntjre6h0.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/2h3zz4xntjre6h0.o new file mode 100644 index 0000000..dbb9a84 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/2h3zz4xntjre6h0.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/309khqgdswvv0cki.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/309khqgdswvv0cki.o new file mode 100644 index 0000000..ded51e9 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/309khqgdswvv0cki.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/325bl5wr34xzw27q.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/325bl5wr34xzw27q.o new file mode 100644 index 0000000..a99be77 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/325bl5wr34xzw27q.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/3ionv5ijzd6pl8c8.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/3ionv5ijzd6pl8c8.o new file mode 100644 index 0000000..818a51d Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/3ionv5ijzd6pl8c8.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/3lyvjmmwls7chyz.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/3lyvjmmwls7chyz.o new file mode 100644 index 0000000..c8336bd Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/3lyvjmmwls7chyz.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/41o6bo5fbs1w5mej.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/41o6bo5fbs1w5mej.o new file mode 100644 index 0000000..24e9899 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/41o6bo5fbs1w5mej.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/4c936t84g1x6ky6y.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/4c936t84g1x6ky6y.o new file mode 100644 index 0000000..5948c9d Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/4c936t84g1x6ky6y.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/4tuikbcosv7abcuh.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/4tuikbcosv7abcuh.o new file mode 100644 index 0000000..0dbbf1a Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/4tuikbcosv7abcuh.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/dep-graph.bin b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/dep-graph.bin new file mode 100644 index 0000000..4a42d44 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/query-cache.bin b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/query-cache.bin new file mode 100644 index 0000000..b0d334a Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/query-cache.bin differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/work-products.bin b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/work-products.bin new file mode 100644 index 0000000..f62669d Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/work-products.bin differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/xt3nah7lt0wz9gl.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/xt3nah7lt0wz9gl.o new file mode 100644 index 0000000..3f62e9a Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw-2exa3kthzzrn1/xt3nah7lt0wz9gl.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw.lock b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrcb5kd11-1j3fxyw.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/10efdl4bcm0s93u3.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/10efdl4bcm0s93u3.o new file mode 100644 index 0000000..49b8ad1 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/10efdl4bcm0s93u3.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/14q6pqwr0jmjp6mo.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/14q6pqwr0jmjp6mo.o new file mode 100644 index 0000000..0071352 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/14q6pqwr0jmjp6mo.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/19f2f2r3jo06fepv.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/19f2f2r3jo06fepv.o new file mode 100644 index 0000000..9c6e6de Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/19f2f2r3jo06fepv.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/2dnek8wrjhjp3ykp.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/2dnek8wrjhjp3ykp.o new file mode 100644 index 0000000..a61e8ab Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/2dnek8wrjhjp3ykp.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/2h3zz4xntjre6h0.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/2h3zz4xntjre6h0.o new file mode 100644 index 0000000..dbb9a84 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/2h3zz4xntjre6h0.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/309khqgdswvv0cki.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/309khqgdswvv0cki.o new file mode 100644 index 0000000..ded51e9 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/309khqgdswvv0cki.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/325bl5wr34xzw27q.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/325bl5wr34xzw27q.o new file mode 100644 index 0000000..a99be77 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/325bl5wr34xzw27q.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/3ionv5ijzd6pl8c8.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/3ionv5ijzd6pl8c8.o new file mode 100644 index 0000000..818a51d Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/3ionv5ijzd6pl8c8.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/3lyvjmmwls7chyz.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/3lyvjmmwls7chyz.o new file mode 100644 index 0000000..c8336bd Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/3lyvjmmwls7chyz.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/41o6bo5fbs1w5mej.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/41o6bo5fbs1w5mej.o new file mode 100644 index 0000000..24e9899 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/41o6bo5fbs1w5mej.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/4c936t84g1x6ky6y.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/4c936t84g1x6ky6y.o new file mode 100644 index 0000000..5948c9d Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/4c936t84g1x6ky6y.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/4tuikbcosv7abcuh.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/4tuikbcosv7abcuh.o new file mode 100644 index 0000000..0dbbf1a Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/4tuikbcosv7abcuh.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/dep-graph.bin b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/dep-graph.bin new file mode 100644 index 0000000..4a42d44 Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/query-cache.bin b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/query-cache.bin new file mode 100644 index 0000000..b0d334a Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/query-cache.bin differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/work-products.bin b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/work-products.bin new file mode 100644 index 0000000..f62669d Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/work-products.bin differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/xt3nah7lt0wz9gl.o b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/xt3nah7lt0wz9gl.o new file mode 100644 index 0000000..3f62e9a Binary files /dev/null and b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj-working/xt3nah7lt0wz9gl.o differ diff --git a/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj.lock b/target/debug/incremental/igloo_core-21rcrmk33tkwy/s-fsrd73ndmg-rd94wj.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-23rlugf8z1nfo/s-fsreayes18-d75csk.lock b/target/debug/incremental/igloo_core-23rlugf8z1nfo/s-fsreayes18-d75csk.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-2bgbiwn4sk1kf/s-fsrlqi43rr-xzrp8r.lock b/target/debug/incremental/igloo_core-2bgbiwn4sk1kf/s-fsrlqi43rr-xzrp8r.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-2gcwmwb8m6bjn/s-fsresd9ruz-1t6kdz4.lock b/target/debug/incremental/igloo_core-2gcwmwb8m6bjn/s-fsresd9ruz-1t6kdz4.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-2gcwmwb8m6bjn/s-fsresgagdw-rtrupz.lock b/target/debug/incremental/igloo_core-2gcwmwb8m6bjn/s-fsresgagdw-rtrupz.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-2gcwmwb8m6bjn/s-fsresi51ci-1mnbq1c.lock b/target/debug/incremental/igloo_core-2gcwmwb8m6bjn/s-fsresi51ci-1mnbq1c.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-2ttv0rgjney1q/s-fsrlpglvny-1s7n2r.lock b/target/debug/incremental/igloo_core-2ttv0rgjney1q/s-fsrlpglvny-1s7n2r.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-3etfp20ncg0l6/s-fsrf0iqaoh-1lv010s.lock b/target/debug/incremental/igloo_core-3etfp20ncg0l6/s-fsrf0iqaoh-1lv010s.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/2r9dah1wjwido14u.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/2r9dah1wjwido14u.o new file mode 100644 index 0000000..bce196d Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/2r9dah1wjwido14u.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/2tr9n37ayjcyze7.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/2tr9n37ayjcyze7.o new file mode 100644 index 0000000..32ee527 Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/2tr9n37ayjcyze7.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/3q41vig7dja5i2tp.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/3q41vig7dja5i2tp.o new file mode 100644 index 0000000..97d056d Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/3q41vig7dja5i2tp.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/4g0uo4bj12zwm34m.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/4g0uo4bj12zwm34m.o new file mode 100644 index 0000000..1b108a0 Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/4g0uo4bj12zwm34m.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/4hzfubb9rtdf14at.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/4hzfubb9rtdf14at.o new file mode 100644 index 0000000..a1e4cf2 Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/4hzfubb9rtdf14at.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/5350jdum8mh248n5.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/5350jdum8mh248n5.o new file mode 100644 index 0000000..0fd303b Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/5350jdum8mh248n5.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/581cz188m7glc91c.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/581cz188m7glc91c.o new file mode 100644 index 0000000..a9ee7c6 Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/581cz188m7glc91c.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/59nyj9cmfmh2i46.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/59nyj9cmfmh2i46.o new file mode 100644 index 0000000..cc22294 Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/59nyj9cmfmh2i46.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/dep-graph.bin b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/dep-graph.bin new file mode 100644 index 0000000..4eecb77 Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/hqgofkpijvmswdj.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/hqgofkpijvmswdj.o new file mode 100644 index 0000000..85f2ba5 Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/hqgofkpijvmswdj.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/j3dv8ulz9obosd6.o b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/j3dv8ulz9obosd6.o new file mode 100644 index 0000000..afd4c84 Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/j3dv8ulz9obosd6.o differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/query-cache.bin b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/query-cache.bin new file mode 100644 index 0000000..f9680de Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/query-cache.bin differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/work-products.bin b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/work-products.bin new file mode 100644 index 0000000..7b8c0f0 Binary files /dev/null and b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92-6hxkjt9j0nab/work-products.bin differ diff --git a/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92.lock b/target/debug/incremental/igloo_core-3tgplcitirlfw/s-fsrn9bu6xd-br8d92.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-6xt9glex751b/s-fsreab6n4y-hlbod1.lock b/target/debug/incremental/igloo_core-6xt9glex751b/s-fsreab6n4y-hlbod1.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/2ndlkcp67q9y5km2.o b/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/2ndlkcp67q9y5km2.o new file mode 100644 index 0000000..a3c11bf Binary files /dev/null and b/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/2ndlkcp67q9y5km2.o differ diff --git a/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/dep-graph.bin b/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/dep-graph.bin new file mode 100644 index 0000000..aa19c4d Binary files /dev/null and b/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/query-cache.bin b/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/query-cache.bin new file mode 100644 index 0000000..cc05460 Binary files /dev/null and b/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/query-cache.bin differ diff --git a/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/work-products.bin b/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/work-products.bin new file mode 100644 index 0000000..5843c30 Binary files /dev/null and b/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld-49gmgbkh6qhk/work-products.bin differ diff --git a/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld.lock b/target/debug/incremental/igloo_core-6zcuwxr2yrjv/s-fsrb8aadhc-qkqmld.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_core-hhdl0y84r8ms/s-fsrewpn0ll-br3wrh.lock b/target/debug/incremental/igloo_core-hhdl0y84r8ms/s-fsrewpn0ll-br3wrh.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/1e2usuweibr2fch8.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/1e2usuweibr2fch8.o new file mode 100644 index 0000000..f96b57f Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/1e2usuweibr2fch8.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/1ncbdgy6gdy2ehu2.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/1ncbdgy6gdy2ehu2.o new file mode 100644 index 0000000..da26dca Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/1ncbdgy6gdy2ehu2.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/1rdh97r6lgysrp9u.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/1rdh97r6lgysrp9u.o new file mode 100644 index 0000000..e1af262 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/1rdh97r6lgysrp9u.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/2qvr196cl7nu0usw.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/2qvr196cl7nu0usw.o new file mode 100644 index 0000000..b571100 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/2qvr196cl7nu0usw.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/2te6knvk5fvb3jub.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/2te6knvk5fvb3jub.o new file mode 100644 index 0000000..d6495a7 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/2te6knvk5fvb3jub.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/3x9dlnoq8eg5tilr.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/3x9dlnoq8eg5tilr.o new file mode 100644 index 0000000..9c3d619 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/3x9dlnoq8eg5tilr.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/42lkm1tjb2n2irtx.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/42lkm1tjb2n2irtx.o new file mode 100644 index 0000000..a232785 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/42lkm1tjb2n2irtx.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/45m7k9g79hfivv3.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/45m7k9g79hfivv3.o new file mode 100644 index 0000000..171cd56 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/45m7k9g79hfivv3.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/4ha64tvw3pu3963q.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/4ha64tvw3pu3963q.o new file mode 100644 index 0000000..3cc339d Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/4ha64tvw3pu3963q.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/4zbj4bi8rt8k5u00.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/4zbj4bi8rt8k5u00.o new file mode 100644 index 0000000..3f512a7 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/4zbj4bi8rt8k5u00.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/52cxmwe0da7nf2wu.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/52cxmwe0da7nf2wu.o new file mode 100644 index 0000000..24195f2 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/52cxmwe0da7nf2wu.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/5cz00crfgqzxxuds.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/5cz00crfgqzxxuds.o new file mode 100644 index 0000000..d16d7a7 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/5cz00crfgqzxxuds.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/9vaeqf3tqhy01ah.o b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/9vaeqf3tqhy01ah.o new file mode 100644 index 0000000..5a6e8d6 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/9vaeqf3tqhy01ah.o differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/dep-graph.bin b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/dep-graph.bin new file mode 100644 index 0000000..1f455bf Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/query-cache.bin b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/query-cache.bin new file mode 100644 index 0000000..92d1176 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/query-cache.bin differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/work-products.bin b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/work-products.bin new file mode 100644 index 0000000..43af227 Binary files /dev/null and b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b-2xa3bjofswukj/work-products.bin differ diff --git a/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b.lock b/target/debug/incremental/igloo_make-1zhxns9ttd9ye/s-fsrn3ji0xu-1sohe7b.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/dep-graph.bin b/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/dep-graph.bin new file mode 100644 index 0000000..e4ed8f4 Binary files /dev/null and b/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/gnej5jrbq1tx7uc.o b/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/gnej5jrbq1tx7uc.o new file mode 100644 index 0000000..c910c79 Binary files /dev/null and b/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/gnej5jrbq1tx7uc.o differ diff --git a/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/query-cache.bin b/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/query-cache.bin new file mode 100644 index 0000000..0f1c6ea Binary files /dev/null and b/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/query-cache.bin differ diff --git a/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/work-products.bin b/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/work-products.bin new file mode 100644 index 0000000..bb453b6 Binary files /dev/null and b/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm-2hfzii79t6mjf/work-products.bin differ diff --git a/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm.lock b/target/debug/incremental/igloo_make-27vzeoeaef0dq/s-fsrlkac3hg-pp8ddm.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/55pgkss8ooot3kn5.o b/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/55pgkss8ooot3kn5.o new file mode 100644 index 0000000..aa14341 Binary files /dev/null and b/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/55pgkss8ooot3kn5.o differ diff --git a/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/dep-graph.bin b/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/dep-graph.bin new file mode 100644 index 0000000..f87acfd Binary files /dev/null and b/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/query-cache.bin b/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/query-cache.bin new file mode 100644 index 0000000..7f4060b Binary files /dev/null and b/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/query-cache.bin differ diff --git a/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/work-products.bin b/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/work-products.bin new file mode 100644 index 0000000..82d6693 Binary files /dev/null and b/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p-26pxyzamecyd/work-products.bin differ diff --git a/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p.lock b/target/debug/incremental/igloo_make-2d0nyeo8d4215/s-fsrbcl7bcf-6qus0p.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_make-3hx03ewrh03v/s-fsrfytlvov-258km8.lock b/target/debug/incremental/igloo_make-3hx03ewrh03v/s-fsrfytlvov-258km8.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/1kxttl9t3cyo1640.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/1kxttl9t3cyo1640.o new file mode 100644 index 0000000..38e7e2e Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/1kxttl9t3cyo1640.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/1sb7b3wfxnsnn5zb.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/1sb7b3wfxnsnn5zb.o new file mode 100644 index 0000000..5e403c2 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/1sb7b3wfxnsnn5zb.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/2kylbtu8dykxo9hb.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/2kylbtu8dykxo9hb.o new file mode 100644 index 0000000..46761e5 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/2kylbtu8dykxo9hb.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/2x4z0ot8n493wkrn.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/2x4z0ot8n493wkrn.o new file mode 100644 index 0000000..80033e3 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/2x4z0ot8n493wkrn.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/2zqe0djrgnjy2q57.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/2zqe0djrgnjy2q57.o new file mode 100644 index 0000000..9987090 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/2zqe0djrgnjy2q57.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/40kf2ppm4ujqqt0f.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/40kf2ppm4ujqqt0f.o new file mode 100644 index 0000000..3968f9f Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/40kf2ppm4ujqqt0f.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/4q9rjj8mn6rq9g9j.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/4q9rjj8mn6rq9g9j.o new file mode 100644 index 0000000..92ff531 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/4q9rjj8mn6rq9g9j.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/4wxewtkirs5v0f4s.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/4wxewtkirs5v0f4s.o new file mode 100644 index 0000000..5f22895 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/4wxewtkirs5v0f4s.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/56qzngmlfas59rzo.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/56qzngmlfas59rzo.o new file mode 100644 index 0000000..f788957 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/56qzngmlfas59rzo.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/c2dfs8b1u7cwfnb.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/c2dfs8b1u7cwfnb.o new file mode 100644 index 0000000..1d7c675 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/c2dfs8b1u7cwfnb.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/cbzq5pk5lue23t5.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/cbzq5pk5lue23t5.o new file mode 100644 index 0000000..d5a202f Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/cbzq5pk5lue23t5.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/dep-graph.bin b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/dep-graph.bin new file mode 100644 index 0000000..1c15f2e Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/ijkoxft4ekx0uyf.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/ijkoxft4ekx0uyf.o new file mode 100644 index 0000000..ba95453 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/ijkoxft4ekx0uyf.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/ll2xx252s9xsjhq.o b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/ll2xx252s9xsjhq.o new file mode 100644 index 0000000..a34fa54 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/ll2xx252s9xsjhq.o differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/query-cache.bin b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/query-cache.bin new file mode 100644 index 0000000..1249345 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/query-cache.bin differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/work-products.bin b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/work-products.bin new file mode 100644 index 0000000..d049d34 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox-iqfhif774kkb/work-products.bin differ diff --git a/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox.lock b/target/debug/incremental/igloo_manifest-26b3m55vzls71/s-fsrdyljdg7-14m31ox.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-2g3qbx8cui2yx/s-fsrfytlwng-n78y3v.lock b/target/debug/incremental/igloo_manifest-2g3qbx8cui2yx/s-fsrfytlwng-n78y3v.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-2kk1a5ny7k1js/s-fsresd9run-c2d23.lock b/target/debug/incremental/igloo_manifest-2kk1a5ny7k1js/s-fsresd9run-c2d23.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-2kk1a5ny7k1js/s-fsresgag2s-1rna45t.lock b/target/debug/incremental/igloo_manifest-2kk1a5ny7k1js/s-fsresgag2s-1rna45t.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-2kk1a5ny7k1js/s-fsresi511t-jb69kv.lock b/target/debug/incremental/igloo_manifest-2kk1a5ny7k1js/s-fsresi511t-jb69kv.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/10gzm6pkv41plaj4.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/10gzm6pkv41plaj4.o new file mode 100644 index 0000000..a03bb5a Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/10gzm6pkv41plaj4.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/1ihr2p2tq01gpbxy.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/1ihr2p2tq01gpbxy.o new file mode 100644 index 0000000..6362f08 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/1ihr2p2tq01gpbxy.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/1r7631s0tq0yx6z8.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/1r7631s0tq0yx6z8.o new file mode 100644 index 0000000..bd6eab8 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/1r7631s0tq0yx6z8.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/1w8jv9nb8e0ybcd7.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/1w8jv9nb8e0ybcd7.o new file mode 100644 index 0000000..53372cc Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/1w8jv9nb8e0ybcd7.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/24ts0d9ecq8616l6.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/24ts0d9ecq8616l6.o new file mode 100644 index 0000000..f6d300c Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/24ts0d9ecq8616l6.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2b9yf6oxbrq81blr.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2b9yf6oxbrq81blr.o new file mode 100644 index 0000000..3202281 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2b9yf6oxbrq81blr.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2o5l6dcosb5aqo31.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2o5l6dcosb5aqo31.o new file mode 100644 index 0000000..b25ceba Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2o5l6dcosb5aqo31.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2z849kbsgx2a6qjo.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2z849kbsgx2a6qjo.o new file mode 100644 index 0000000..4e66137 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2z849kbsgx2a6qjo.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2zjdq48v78axoxi8.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2zjdq48v78axoxi8.o new file mode 100644 index 0000000..df6529a Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/2zjdq48v78axoxi8.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/354j7bft4w8a7pid.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/354j7bft4w8a7pid.o new file mode 100644 index 0000000..6b5fde9 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/354j7bft4w8a7pid.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/35is94y5bp1f1r8v.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/35is94y5bp1f1r8v.o new file mode 100644 index 0000000..d23e018 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/35is94y5bp1f1r8v.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/3azhhwt4zuzj0ua6.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/3azhhwt4zuzj0ua6.o new file mode 100644 index 0000000..e63fef4 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/3azhhwt4zuzj0ua6.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/3uy6hfkq8zbplq5o.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/3uy6hfkq8zbplq5o.o new file mode 100644 index 0000000..cd4376c Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/3uy6hfkq8zbplq5o.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/42fr1jh174y4mlhr.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/42fr1jh174y4mlhr.o new file mode 100644 index 0000000..49e490c Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/42fr1jh174y4mlhr.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4ld7h73jdawm07s4.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4ld7h73jdawm07s4.o new file mode 100644 index 0000000..01cab8b Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4ld7h73jdawm07s4.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4mfpzd303z82z8fd.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4mfpzd303z82z8fd.o new file mode 100644 index 0000000..8c5b929 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4mfpzd303z82z8fd.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4otti1m0cqovzlwe.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4otti1m0cqovzlwe.o new file mode 100644 index 0000000..1538031 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4otti1m0cqovzlwe.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4par4m88glverb5y.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4par4m88glverb5y.o new file mode 100644 index 0000000..a05371f Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4par4m88glverb5y.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4rsbfuzbhdd3fe56.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4rsbfuzbhdd3fe56.o new file mode 100644 index 0000000..ff1e97f Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4rsbfuzbhdd3fe56.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4thv7jf4iy7tc7lw.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4thv7jf4iy7tc7lw.o new file mode 100644 index 0000000..be8f137 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4thv7jf4iy7tc7lw.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4u9j27vtjnteo6iz.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4u9j27vtjnteo6iz.o new file mode 100644 index 0000000..d77600a Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4u9j27vtjnteo6iz.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4uozovr8wekl2m4n.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4uozovr8wekl2m4n.o new file mode 100644 index 0000000..126b2d6 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4uozovr8wekl2m4n.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4wrzuxcmikut621w.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4wrzuxcmikut621w.o new file mode 100644 index 0000000..d800e35 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/4wrzuxcmikut621w.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/bvk96d6uhpgl7z4.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/bvk96d6uhpgl7z4.o new file mode 100644 index 0000000..ca6a760 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/bvk96d6uhpgl7z4.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/dep-graph.bin b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/dep-graph.bin new file mode 100644 index 0000000..fa261ce Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/qkq40n664ybtrak.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/qkq40n664ybtrak.o new file mode 100644 index 0000000..256d617 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/qkq40n664ybtrak.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/query-cache.bin b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/query-cache.bin new file mode 100644 index 0000000..a1fba54 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/query-cache.bin differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/rs41ksb8rj2sjgg.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/rs41ksb8rj2sjgg.o new file mode 100644 index 0000000..ccb1cf3 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/rs41ksb8rj2sjgg.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/svbpubsbcco8uk.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/svbpubsbcco8uk.o new file mode 100644 index 0000000..2c09b67 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/svbpubsbcco8uk.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/symvh6yp99kme9c.o b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/symvh6yp99kme9c.o new file mode 100644 index 0000000..ac0a473 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/symvh6yp99kme9c.o differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/work-products.bin b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/work-products.bin new file mode 100644 index 0000000..7994112 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t-383sjp8blnxux/work-products.bin differ diff --git a/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t.lock b/target/debug/incremental/igloo_manifest-2vla5vbiow66v/s-fsrmj0g6lf-k89h7t.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/dep-graph.bin b/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/dep-graph.bin new file mode 100644 index 0000000..ad26d3b Binary files /dev/null and b/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/ji11f070z5hwbd6.o b/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/ji11f070z5hwbd6.o new file mode 100644 index 0000000..819636d Binary files /dev/null and b/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/ji11f070z5hwbd6.o differ diff --git a/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/query-cache.bin b/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/query-cache.bin new file mode 100644 index 0000000..824ac03 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/query-cache.bin differ diff --git a/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/work-products.bin b/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/work-products.bin new file mode 100644 index 0000000..b073c1b Binary files /dev/null and b/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt-1awhtlhh7mix0/work-products.bin differ diff --git a/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt.lock b/target/debug/incremental/igloo_manifest-30id3gf41me25/s-fsrb8aadrn-1aajplt.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-3unmsw8hpu6kj/s-fsreivjbww-jz0rsb.lock b/target/debug/incremental/igloo_manifest-3unmsw8hpu6kj/s-fsreivjbww-jz0rsb.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/1jvaz3ybw7qyiits.o b/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/1jvaz3ybw7qyiits.o new file mode 100644 index 0000000..90e2954 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/1jvaz3ybw7qyiits.o differ diff --git a/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/dep-graph.bin b/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/dep-graph.bin new file mode 100644 index 0000000..c391b29 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/query-cache.bin b/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/query-cache.bin new file mode 100644 index 0000000..0cc885b Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/query-cache.bin differ diff --git a/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/work-products.bin b/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/work-products.bin new file mode 100644 index 0000000..2469097 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv-hzgu5hfgkpws/work-products.bin differ diff --git a/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv.lock b/target/debug/incremental/igloo_manifest-ewxhjwbtqort/s-fsrbcl7a85-1drf5bv.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/170gyq7af0pyk4kp.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/170gyq7af0pyk4kp.o new file mode 100644 index 0000000..b8e872e Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/170gyq7af0pyk4kp.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/1g51qmowma74eeek.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/1g51qmowma74eeek.o new file mode 100644 index 0000000..4db4b51 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/1g51qmowma74eeek.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/1woey4pyb7f7f6db.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/1woey4pyb7f7f6db.o new file mode 100644 index 0000000..ea03ecc Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/1woey4pyb7f7f6db.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/227sdev6szmx3a7.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/227sdev6szmx3a7.o new file mode 100644 index 0000000..a7787f1 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/227sdev6szmx3a7.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/2l69xsym5pcuiwdy.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/2l69xsym5pcuiwdy.o new file mode 100644 index 0000000..f23c392 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/2l69xsym5pcuiwdy.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/3anrx3t09uu2lyuu.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/3anrx3t09uu2lyuu.o new file mode 100644 index 0000000..245c116 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/3anrx3t09uu2lyuu.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/49bwkpnwqiqxplmu.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/49bwkpnwqiqxplmu.o new file mode 100644 index 0000000..0385c81 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/49bwkpnwqiqxplmu.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/4ea7mfwccjha3gbl.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/4ea7mfwccjha3gbl.o new file mode 100644 index 0000000..416977c Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/4ea7mfwccjha3gbl.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/aku4tpjmvks5ak8.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/aku4tpjmvks5ak8.o new file mode 100644 index 0000000..441bab5 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/aku4tpjmvks5ak8.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/dep-graph.bin b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/dep-graph.bin new file mode 100644 index 0000000..cd3e671 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/dep-graph.bin differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/erw9381ra83c3me.o b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/erw9381ra83c3me.o new file mode 100644 index 0000000..1fdee1f Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/erw9381ra83c3me.o differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/query-cache.bin b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/query-cache.bin new file mode 100644 index 0000000..a8f99fe Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/query-cache.bin differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/work-products.bin b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/work-products.bin new file mode 100644 index 0000000..3fa0a45 Binary files /dev/null and b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5-35occy0bvr5a4/work-products.bin differ diff --git a/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5.lock b/target/debug/incremental/igloo_manifest-ff8y64is8k2k/s-fsrmizkw4s-7pjoe5.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/libigloo_cli.d b/target/debug/libigloo_cli.d new file mode 100644 index 0000000..ac4254e --- /dev/null +++ b/target/debug/libigloo_cli.d @@ -0,0 +1 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/libigloo_cli.rlib: /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_base/src/env_info.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_base/src/lib.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_cli/src/lib.rs diff --git a/target/debug/libigloo_cli.rlib b/target/debug/libigloo_cli.rlib new file mode 100644 index 0000000..2fef90e Binary files /dev/null and b/target/debug/libigloo_cli.rlib differ diff --git a/target/debug/libigloo_core.d b/target/debug/libigloo_core.d new file mode 100644 index 0000000..11ac714 --- /dev/null +++ b/target/debug/libigloo_core.d @@ -0,0 +1 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/libigloo_core.rlib: /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_base/src/env_info.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_base/src/lib.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_cli/src/lib.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_core/src/igloo_action.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_core/src/igloo_project.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_core/src/igloo_target.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_core/src/lib.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_make/src/lib.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_manifest/src/lib.rs diff --git a/target/debug/libigloo_core.rlib b/target/debug/libigloo_core.rlib new file mode 100644 index 0000000..5ec282c Binary files /dev/null and b/target/debug/libigloo_core.rlib differ diff --git a/target/debug/libigloo_make.d b/target/debug/libigloo_make.d new file mode 100644 index 0000000..70d4a47 --- /dev/null +++ b/target/debug/libigloo_make.d @@ -0,0 +1 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/libigloo_make.rlib: /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_make/src/lib.rs diff --git a/target/debug/libigloo_make.rlib b/target/debug/libigloo_make.rlib new file mode 100644 index 0000000..149e235 Binary files /dev/null and b/target/debug/libigloo_make.rlib differ diff --git a/target/debug/libigloo_manifest.d b/target/debug/libigloo_manifest.d new file mode 100644 index 0000000..858d61f --- /dev/null +++ b/target/debug/libigloo_manifest.d @@ -0,0 +1 @@ +/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/debug/libigloo_manifest.rlib: /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_base/src/env_info.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_base/src/lib.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/igloo_manifest/src/lib.rs diff --git a/target/debug/libigloo_manifest.rlib b/target/debug/libigloo_manifest.rlib new file mode 100644 index 0000000..58e4a8c Binary files /dev/null and b/target/debug/libigloo_manifest.rlib differ diff --git a/target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/lib-aho_corasick b/target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/lib-aho_corasick deleted file mode 100644 index 3ce524c..0000000 --- a/target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/lib-aho_corasick +++ /dev/null @@ -1 +0,0 @@ -566410fbf7ec1dac \ No newline at end of file diff --git a/target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/lib-aho_corasick.json b/target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/lib-aho_corasick.json deleted file mode 100644 index bb1adbd..0000000 --- a/target/release/.fingerprint/aho-corasick-177f3c0cce8d214a/lib-aho_corasick.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":9863344317402520737,"profile":4339006351771724982,"path":15594310820563405654,"deps":[[6880116618428842180,"memchr",false,2770710925116931031]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/aho-corasick-177f3c0cce8d214a/dep-lib-aho_corasick"}}],"rustflags":[],"metadata":13904389431191498124,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/lib-arrayvec b/target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/lib-arrayvec deleted file mode 100644 index 6ec4721..0000000 --- a/target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/lib-arrayvec +++ /dev/null @@ -1 +0,0 @@ -3d76ea8082264ad7 \ No newline at end of file diff --git a/target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/lib-arrayvec.json b/target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/lib-arrayvec.json deleted file mode 100644 index e526002..0000000 --- a/target/release/.fingerprint/arrayvec-9d1a3d3cd04b847f/lib-arrayvec.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"array-sizes-33-128\", \"default\", \"std\"]","target":4004654919687799417,"profile":4339006351771724982,"path":193864345743813111,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/arrayvec-9d1a3d3cd04b847f/dep-lib-arrayvec"}}],"rustflags":[],"metadata":5019420986621020735,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/atty-762b111f8be85311/lib-atty b/target/release/.fingerprint/atty-762b111f8be85311/lib-atty deleted file mode 100644 index 97c3b14..0000000 --- a/target/release/.fingerprint/atty-762b111f8be85311/lib-atty +++ /dev/null @@ -1 +0,0 @@ -424bab9d67b8db20 \ No newline at end of file diff --git a/target/release/.fingerprint/atty-762b111f8be85311/lib-atty.json b/target/release/.fingerprint/atty-762b111f8be85311/lib-atty.json deleted file mode 100644 index ba7f5a5..0000000 --- a/target/release/.fingerprint/atty-762b111f8be85311/lib-atty.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":10792472713283433088,"profile":4339006351771724982,"path":6502263987148761534,"deps":[[5317750649359053169,"libc",false,16294047808531166449]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/atty-762b111f8be85311/dep-lib-atty"}}],"rustflags":[],"metadata":2329458237537140231,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-062c362b0e560242/lib-autocfg b/target/release/.fingerprint/autocfg-062c362b0e560242/lib-autocfg deleted file mode 100644 index abcea9e..0000000 --- a/target/release/.fingerprint/autocfg-062c362b0e560242/lib-autocfg +++ /dev/null @@ -1 +0,0 @@ -607f891a6a9a440f \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-062c362b0e560242/lib-autocfg.json b/target/release/.fingerprint/autocfg-062c362b0e560242/lib-autocfg.json deleted file mode 100644 index a8ef49e..0000000 --- a/target/release/.fingerprint/autocfg-062c362b0e560242/lib-autocfg.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":15796848007248474757,"profile":10803726696109476711,"path":3972505152115234588,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/autocfg-062c362b0e560242/dep-lib-autocfg"}}],"rustflags":[],"metadata":13102859075309379048,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-06e1e7e4c677a486/build-script-build-script-build b/target/release/.fingerprint/bitflags-06e1e7e4c677a486/build-script-build-script-build deleted file mode 100644 index 58a5a8f..0000000 --- a/target/release/.fingerprint/bitflags-06e1e7e4c677a486/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -63dbdf85ea2ec5f8 \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-06e1e7e4c677a486/build-script-build-script-build.json b/target/release/.fingerprint/bitflags-06e1e7e4c677a486/build-script-build-script-build.json deleted file mode 100644 index 1e792a3..0000000 --- a/target/release/.fingerprint/bitflags-06e1e7e4c677a486/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\"]","target":10088282520713642473,"profile":10803726696109476711,"path":18108316973269007655,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bitflags-06e1e7e4c677a486/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14564035643000669268,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-3d65992b427b8247/run-build-script-build-script-build b/target/release/.fingerprint/bitflags-3d65992b427b8247/run-build-script-build-script-build deleted file mode 100644 index b490ccb..0000000 --- a/target/release/.fingerprint/bitflags-3d65992b427b8247/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -b6d8dc6fef56d8c1 \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-3d65992b427b8247/run-build-script-build-script-build.json b/target/release/.fingerprint/bitflags-3d65992b427b8247/run-build-script-build-script-build.json deleted file mode 100644 index 76bcb45..0000000 --- a/target/release/.fingerprint/bitflags-3d65992b427b8247/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[4117749705314174326,"build_script_build",false,17925785476621392739]],"local":[{"Precalculated":"1.2.1"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-ff7f5482904c4de3/lib-bitflags b/target/release/.fingerprint/bitflags-ff7f5482904c4de3/lib-bitflags deleted file mode 100644 index 6d29868..0000000 --- a/target/release/.fingerprint/bitflags-ff7f5482904c4de3/lib-bitflags +++ /dev/null @@ -1 +0,0 @@ -b78498036264d650 \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-ff7f5482904c4de3/lib-bitflags.json b/target/release/.fingerprint/bitflags-ff7f5482904c4de3/lib-bitflags.json deleted file mode 100644 index c61d9e5..0000000 --- a/target/release/.fingerprint/bitflags-ff7f5482904c4de3/lib-bitflags.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\"]","target":14123478400658042508,"profile":4339006351771724982,"path":16525684902854961646,"deps":[[4117749705314174326,"build_script_build",false,13968009830663510198]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bitflags-ff7f5482904c4de3/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-0f89700f04afbfc5/lib-cfg-if b/target/release/.fingerprint/cfg-if-0f89700f04afbfc5/lib-cfg-if deleted file mode 100644 index 1915a69..0000000 --- a/target/release/.fingerprint/cfg-if-0f89700f04afbfc5/lib-cfg-if +++ /dev/null @@ -1 +0,0 @@ -fa6fe3505fe3aba2 \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-0f89700f04afbfc5/lib-cfg-if.json b/target/release/.fingerprint/cfg-if-0f89700f04afbfc5/lib-cfg-if.json deleted file mode 100644 index bf01d95..0000000 --- a/target/release/.fingerprint/cfg-if-0f89700f04afbfc5/lib-cfg-if.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":834697563557903354,"profile":4339006351771724982,"path":11144075455992316700,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cfg-if-0f89700f04afbfc5/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap-438ee09a7ce7db16/lib-clap b/target/release/.fingerprint/clap-438ee09a7ce7db16/lib-clap deleted file mode 100644 index 5f03fd3..0000000 --- a/target/release/.fingerprint/clap-438ee09a7ce7db16/lib-clap +++ /dev/null @@ -1 +0,0 @@ -344341265062261a \ No newline at end of file diff --git a/target/release/.fingerprint/clap-438ee09a7ce7db16/lib-clap.json b/target/release/.fingerprint/clap-438ee09a7ce7db16/lib-clap.json deleted file mode 100644 index cba70c4..0000000 --- a/target/release/.fingerprint/clap-438ee09a7ce7db16/lib-clap.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"atty\", \"cargo\", \"clap_derive\", \"color\", \"default\", \"derive\", \"lazy_static\", \"std\", \"strsim\", \"suggestions\", \"termcolor\"]","target":229160480527202769,"profile":4339006351771724982,"path":3669366453960628055,"deps":[[573161692746345945,"clap_derive",false,15272292838988573969],[769499514241923581,"strsim",false,15665320752609330713],[4117749705314174326,"bitflags",false,5824953540180214967],[8536350174477403560,"lazy_static",false,1494062680194874578],[8898714657973812811,"indexmap",false,6362341682394479324],[10632722147547604258,"unicode_width",false,14996014898286880739],[11109407199266334614,"termcolor",false,10149638650981741481],[15251456120363369268,"atty",false,2367688784279718722],[16345904869059864303,"textwrap",false,16632906692923335640],[17564442112974139928,"os_str_bytes",false,1743383072101578026],[18026345993996883719,"vec_map",false,6872557505403409546]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/clap-438ee09a7ce7db16/dep-lib-clap"}}],"rustflags":[],"metadata":18413529249576532139,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/lib-clap_derive b/target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/lib-clap_derive deleted file mode 100644 index abdd55a..0000000 --- a/target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/lib-clap_derive +++ /dev/null @@ -1 +0,0 @@ -11eda7c56b15f2d3 \ No newline at end of file diff --git a/target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/lib-clap_derive.json b/target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/lib-clap_derive.json deleted file mode 100644 index fdcc1e5..0000000 --- a/target/release/.fingerprint/clap_derive-2f0d8a47419feb4d/lib-clap_derive.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\"]","target":8248095306422532944,"profile":10803726696109476711,"path":18408635321131909167,"deps":[[6555828555352911943,"quote",false,16163107569172795120],[9691534041096727393,"proc_macro2",false,5243241553545819983],[10133531055205208420,"syn",false,15286578023415744750],[12764759236426115033,"heck",false,6552128572828780322],[14484104962928065257,"proc_macro_error",false,15469315661212292632]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/clap_derive-2f0d8a47419feb4d/dep-lib-clap_derive"}}],"rustflags":[],"metadata":2790395362119635249,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/config-920fae297337ba9d/lib-config b/target/release/.fingerprint/config-920fae297337ba9d/lib-config deleted file mode 100644 index d01534c..0000000 --- a/target/release/.fingerprint/config-920fae297337ba9d/lib-config +++ /dev/null @@ -1 +0,0 @@ -adbcdff5393c61c8 \ No newline at end of file diff --git a/target/release/.fingerprint/config-920fae297337ba9d/lib-config.json b/target/release/.fingerprint/config-920fae297337ba9d/lib-config.json deleted file mode 100644 index f71f9e0..0000000 --- a/target/release/.fingerprint/config-920fae297337ba9d/lib-config.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"hjson\", \"ini\", \"json\", \"rust-ini\", \"serde-hjson\", \"serde_json\", \"toml\", \"yaml\", \"yaml-rust\"]","target":12659230784421511525,"profile":4339006351771724982,"path":5075071221035885186,"deps":[[4460517003373423497,"yaml_rust",false,12976080690627020198],[4517326557178989942,"nom",false,13336110873899061361],[6408936455341118370,"serde_hjson",false,533005974202145606],[6669303792743813468,"serde",false,13576692451977142162],[7231915146259649043,"toml",false,13350432501424936770],[8536350174477403560,"lazy_static",false,1494062680194874578],[9725125109844783316,"ini",false,10539869770406906804],[15789920708546520010,"serde_json",false,5243207448883274393]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/config-920fae297337ba9d/dep-lib-config"}}],"rustflags":[],"metadata":18005506352503131519,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/heck-1d4454dbf81ee16c/lib-heck b/target/release/.fingerprint/heck-1d4454dbf81ee16c/lib-heck deleted file mode 100644 index 110a6fe..0000000 --- a/target/release/.fingerprint/heck-1d4454dbf81ee16c/lib-heck +++ /dev/null @@ -1 +0,0 @@ -228725ea38d6ed5a \ No newline at end of file diff --git a/target/release/.fingerprint/heck-1d4454dbf81ee16c/lib-heck.json b/target/release/.fingerprint/heck-1d4454dbf81ee16c/lib-heck.json deleted file mode 100644 index 0163beb..0000000 --- a/target/release/.fingerprint/heck-1d4454dbf81ee16c/lib-heck.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":14570799346789123884,"profile":10803726696109476711,"path":13809153362591777482,"deps":[[9580372165939939425,"unicode_segmentation",false,15552852232341925921]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/heck-1d4454dbf81ee16c/dep-lib-heck"}}],"rustflags":[],"metadata":4968006677088137060,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/igloo-e77f2c6e61152a46/bin-igloo b/target/release/.fingerprint/igloo-e77f2c6e61152a46/bin-igloo deleted file mode 100644 index a314f99..0000000 --- a/target/release/.fingerprint/igloo-e77f2c6e61152a46/bin-igloo +++ /dev/null @@ -1 +0,0 @@ -b2728d7eca6f4af4 \ No newline at end of file diff --git a/target/release/.fingerprint/igloo-e77f2c6e61152a46/bin-igloo.json b/target/release/.fingerprint/igloo-e77f2c6e61152a46/bin-igloo.json deleted file mode 100644 index d157054..0000000 --- a/target/release/.fingerprint/igloo-e77f2c6e61152a46/bin-igloo.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":6482839392697304055,"profile":4339006351771724982,"path":1036222786711178230,"deps":[[1122423871155493656,"config",false,14438888099962404013],[12003688265259193345,"clap",false,1884301590479848244]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/igloo-e77f2c6e61152a46/dep-bin-igloo"}}],"rustflags":[],"metadata":10721200095422275711,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/igloo-e77f2c6e61152a46/dep-bin-igloo b/target/release/.fingerprint/igloo-e77f2c6e61152a46/dep-bin-igloo deleted file mode 100644 index 115184d..0000000 Binary files a/target/release/.fingerprint/igloo-e77f2c6e61152a46/dep-bin-igloo and /dev/null differ diff --git a/target/release/.fingerprint/indexmap-5767be7128df3faa/build-script-build-script-build b/target/release/.fingerprint/indexmap-5767be7128df3faa/build-script-build-script-build deleted file mode 100644 index ca46862..0000000 --- a/target/release/.fingerprint/indexmap-5767be7128df3faa/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -8f68125fc76d5a06 \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-5767be7128df3faa/build-script-build-script-build.json b/target/release/.fingerprint/indexmap-5767be7128df3faa/build-script-build-script-build.json deleted file mode 100644 index d25610d..0000000 --- a/target/release/.fingerprint/indexmap-5767be7128df3faa/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":10088282520713642473,"profile":10803726696109476711,"path":3763875610407215597,"deps":[[9245478811527615946,"autocfg",false,1100173989487673184]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/indexmap-5767be7128df3faa/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":11198035901464710582,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-62d8e03465cfcdd6/run-build-script-build-script-build b/target/release/.fingerprint/indexmap-62d8e03465cfcdd6/run-build-script-build-script-build deleted file mode 100644 index 5e24d35..0000000 --- a/target/release/.fingerprint/indexmap-62d8e03465cfcdd6/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -d977ccfcbd9d6c74 \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-62d8e03465cfcdd6/run-build-script-build-script-build.json b/target/release/.fingerprint/indexmap-62d8e03465cfcdd6/run-build-script-build-script-build.json deleted file mode 100644 index 21de5b2..0000000 --- a/target/release/.fingerprint/indexmap-62d8e03465cfcdd6/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[8898714657973812811,"build_script_build",false,457799015192488079]],"local":[{"RerunIfChanged":{"output":"release/build/indexmap-62d8e03465cfcdd6/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-d71227ee9669aacc/lib-indexmap b/target/release/.fingerprint/indexmap-d71227ee9669aacc/lib-indexmap deleted file mode 100644 index 582ad5c..0000000 --- a/target/release/.fingerprint/indexmap-d71227ee9669aacc/lib-indexmap +++ /dev/null @@ -1 +0,0 @@ -dcbac80e0d944b58 \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-d71227ee9669aacc/lib-indexmap.json b/target/release/.fingerprint/indexmap-d71227ee9669aacc/lib-indexmap.json deleted file mode 100644 index e532234..0000000 --- a/target/release/.fingerprint/indexmap-d71227ee9669aacc/lib-indexmap.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":15421190043687951142,"profile":4339006351771724982,"path":8492995015689714749,"deps":[[8898714657973812811,"build_script_build",false,8389253645200029657]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/indexmap-d71227ee9669aacc/dep-lib-indexmap"}}],"rustflags":[],"metadata":11198035901464710582,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/itoa-449af1c7bd37f226/dep-lib-itoa b/target/release/.fingerprint/itoa-449af1c7bd37f226/dep-lib-itoa deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/itoa-449af1c7bd37f226/dep-lib-itoa and /dev/null differ diff --git a/target/release/.fingerprint/itoa-449af1c7bd37f226/lib-itoa b/target/release/.fingerprint/itoa-449af1c7bd37f226/lib-itoa deleted file mode 100644 index 8597c24..0000000 --- a/target/release/.fingerprint/itoa-449af1c7bd37f226/lib-itoa +++ /dev/null @@ -1 +0,0 @@ -bc09269879ce5a31 \ No newline at end of file diff --git a/target/release/.fingerprint/itoa-449af1c7bd37f226/lib-itoa.json b/target/release/.fingerprint/itoa-449af1c7bd37f226/lib-itoa.json deleted file mode 100644 index a335b68..0000000 --- a/target/release/.fingerprint/itoa-449af1c7bd37f226/lib-itoa.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":9124939712912617398,"profile":4339006351771724982,"path":7000161359452501631,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/itoa-449af1c7bd37f226/dep-lib-itoa"}}],"rustflags":[],"metadata":2285756563936990018,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/dep-lib-lazy_static b/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/dep-lib-lazy_static deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/dep-lib-lazy_static and /dev/null differ diff --git a/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/lib-lazy_static b/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/lib-lazy_static deleted file mode 100644 index 164b129..0000000 --- a/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/lib-lazy_static +++ /dev/null @@ -1 +0,0 @@ -d2fc2e7d17fabb14 \ No newline at end of file diff --git a/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/lib-lazy_static.json b/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/lib-lazy_static.json deleted file mode 100644 index 500a85e..0000000 --- a/target/release/.fingerprint/lazy_static-a2d4e9568ec6e14c/lib-lazy_static.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":3310758268438181623,"profile":4339006351771724982,"path":5750759608404037476,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/lazy_static-a2d4e9568ec6e14c/dep-lib-lazy_static"}}],"rustflags":[],"metadata":111743654650316589,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/lexical-core-3f76a674b0092248/build-script-build-script-build b/target/release/.fingerprint/lexical-core-3f76a674b0092248/build-script-build-script-build deleted file mode 100644 index faf06d5..0000000 --- a/target/release/.fingerprint/lexical-core-3f76a674b0092248/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -5a2a429f5c3d51fe \ No newline at end of file diff --git a/target/release/.fingerprint/lexical-core-3f76a674b0092248/build-script-build-script-build.json b/target/release/.fingerprint/lexical-core-3f76a674b0092248/build-script-build-script-build.json deleted file mode 100644 index 8916839..0000000 --- a/target/release/.fingerprint/lexical-core-3f76a674b0092248/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"arrayvec\", \"correct\", \"default\", \"ryu\", \"static_assertions\", \"std\", \"table\"]","target":10429514197457385088,"profile":10803726696109476711,"path":191477671258415460,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/lexical-core-3f76a674b0092248/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":18083135213234654780,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/lexical-core-6da36bab7df24c03/dep-lib-lexical-core b/target/release/.fingerprint/lexical-core-6da36bab7df24c03/dep-lib-lexical-core deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/lexical-core-6da36bab7df24c03/dep-lib-lexical-core and /dev/null differ diff --git a/target/release/.fingerprint/lexical-core-6da36bab7df24c03/lib-lexical-core b/target/release/.fingerprint/lexical-core-6da36bab7df24c03/lib-lexical-core deleted file mode 100644 index 17b7048..0000000 --- a/target/release/.fingerprint/lexical-core-6da36bab7df24c03/lib-lexical-core +++ /dev/null @@ -1 +0,0 @@ -d1b2e007872c689c \ No newline at end of file diff --git a/target/release/.fingerprint/lexical-core-6da36bab7df24c03/lib-lexical-core.json b/target/release/.fingerprint/lexical-core-6da36bab7df24c03/lib-lexical-core.json deleted file mode 100644 index 6f039cb..0000000 --- a/target/release/.fingerprint/lexical-core-6da36bab7df24c03/lib-lexical-core.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"arrayvec\", \"correct\", \"default\", \"ryu\", \"static_assertions\", \"std\", \"table\"]","target":15038087822964504862,"profile":4339006351771724982,"path":6314748378647186688,"deps":[[1318244780073258608,"ryu",false,12185525729485603953],[3802350819995386607,"arrayvec",false,15513254208381548093],[4117749705314174326,"bitflags",false,5824953540180214967],[6337528866793177869,"build_script_build",false,3744215261264782458],[13837234849270857574,"cfg_if",false,11721712453680328698],[14461844432851620748,"static_assertions",false,17498914494382799210]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/lexical-core-6da36bab7df24c03/dep-lib-lexical-core"}}],"rustflags":[],"metadata":18083135213234654780,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/lexical-core-ee4e63713e85d41d/run-build-script-build-script-build b/target/release/.fingerprint/lexical-core-ee4e63713e85d41d/run-build-script-build-script-build deleted file mode 100644 index a73d25b..0000000 --- a/target/release/.fingerprint/lexical-core-ee4e63713e85d41d/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -7aa44842f11ff633 \ No newline at end of file diff --git a/target/release/.fingerprint/lexical-core-ee4e63713e85d41d/run-build-script-build-script-build.json b/target/release/.fingerprint/lexical-core-ee4e63713e85d41d/run-build-script-build-script-build.json deleted file mode 100644 index 52d93b8..0000000 --- a/target/release/.fingerprint/lexical-core-ee4e63713e85d41d/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[6337528866793177869,"build_script_build",false,18325495826765458010]],"local":[{"Precalculated":"0.7.4"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-7cc2f7bb1680d496/build-script-build-script-build b/target/release/.fingerprint/libc-7cc2f7bb1680d496/build-script-build-script-build deleted file mode 100644 index c0fb2fc..0000000 --- a/target/release/.fingerprint/libc-7cc2f7bb1680d496/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -8876cd9f144380a8 \ No newline at end of file diff --git a/target/release/.fingerprint/libc-7cc2f7bb1680d496/build-script-build-script-build.json b/target/release/.fingerprint/libc-7cc2f7bb1680d496/build-script-build-script-build.json deleted file mode 100644 index 89f9817..0000000 --- a/target/release/.fingerprint/libc-7cc2f7bb1680d496/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":10088282520713642473,"profile":10803726696109476711,"path":9991745987741175669,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libc-7cc2f7bb1680d496/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14998826085014762512,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-7cc2f7bb1680d496/dep-build-script-build-script-build b/target/release/.fingerprint/libc-7cc2f7bb1680d496/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/libc-7cc2f7bb1680d496/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/libc-fc4010789fc5747b/run-build-script-build-script-build b/target/release/.fingerprint/libc-fc4010789fc5747b/run-build-script-build-script-build deleted file mode 100644 index 2bb54be..0000000 --- a/target/release/.fingerprint/libc-fc4010789fc5747b/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -94473adea667a988 \ No newline at end of file diff --git a/target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/lib-libc b/target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/lib-libc deleted file mode 100644 index f28e321..0000000 --- a/target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/lib-libc +++ /dev/null @@ -1 +0,0 @@ -f174bbfc261620e2 \ No newline at end of file diff --git a/target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/lib-libc.json b/target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/lib-libc.json deleted file mode 100644 index e8e5169..0000000 --- a/target/release/.fingerprint/libc-ff0f9ac8c11c1dbe/lib-libc.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":1047533068072243941,"profile":4339006351771724982,"path":12925603851895398535,"deps":[[5317750649359053169,"build_script_build",false,9847516026612893588]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libc-ff0f9ac8c11c1dbe/dep-lib-libc"}}],"rustflags":[],"metadata":14998826085014762512,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/dep-lib-linked-hash-map b/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/dep-lib-linked-hash-map deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/dep-lib-linked-hash-map and /dev/null differ diff --git a/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/lib-linked-hash-map b/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/lib-linked-hash-map deleted file mode 100644 index 2dd74f3..0000000 --- a/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/lib-linked-hash-map +++ /dev/null @@ -1 +0,0 @@ -f54e61ca7b2fab47 \ No newline at end of file diff --git a/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/lib-linked-hash-map.json b/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/lib-linked-hash-map.json deleted file mode 100644 index 4f141cf..0000000 --- a/target/release/.fingerprint/linked-hash-map-0a449f63e0711052/lib-linked-hash-map.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"serde\", \"serde_impl\", \"serde_test\"]","target":10318772343253782419,"profile":4339006351771724982,"path":6276080809862490524,"deps":[[2845308538234926458,"serde",false,15876840405796750039],[4397935388160296522,"serde_test",false,15206670031429652869]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/linked-hash-map-0a449f63e0711052/dep-lib-linked-hash-map"}}],"rustflags":[],"metadata":11673622644101893762,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/dep-lib-linked-hash-map b/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/dep-lib-linked-hash-map deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/dep-lib-linked-hash-map and /dev/null differ diff --git a/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/lib-linked-hash-map b/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/lib-linked-hash-map deleted file mode 100644 index d33e823..0000000 --- a/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/lib-linked-hash-map +++ /dev/null @@ -1 +0,0 @@ -695a92eafad44026 \ No newline at end of file diff --git a/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/lib-linked-hash-map.json b/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/lib-linked-hash-map.json deleted file mode 100644 index c4457c5..0000000 --- a/target/release/.fingerprint/linked-hash-map-e27fd89619f3f825/lib-linked-hash-map.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":10318772343253782419,"profile":4339006351771724982,"path":8785454857727796854,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/linked-hash-map-e27fd89619f3f825/dep-lib-linked-hash-map"}}],"rustflags":[],"metadata":11673622644101893762,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-223fd63faab3ed19/run-build-script-build-script-build b/target/release/.fingerprint/memchr-223fd63faab3ed19/run-build-script-build-script-build deleted file mode 100644 index be61413..0000000 --- a/target/release/.fingerprint/memchr-223fd63faab3ed19/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -76d2ac6e52d245b2 \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-223fd63faab3ed19/run-build-script-build-script-build.json b/target/release/.fingerprint/memchr-223fd63faab3ed19/run-build-script-build-script-build.json deleted file mode 100644 index 05c9867..0000000 --- a/target/release/.fingerprint/memchr-223fd63faab3ed19/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[6880116618428842180,"build_script_build",false,11592637873635830276]],"local":[{"Precalculated":"2.3.3"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/build-script-build-script-build b/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/build-script-build-script-build deleted file mode 100644 index b46b7b7..0000000 --- a/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -04aacdc3b952e1a0 \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/build-script-build-script-build.json b/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/build-script-build-script-build.json deleted file mode 100644 index b1c7588..0000000 --- a/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\", \"use_std\"]","target":10088282520713642473,"profile":10803726696109476711,"path":16077607147433262909,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-3df2d04dc68b3e7b/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":2920040441970090600,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/dep-build-script-build-script-build b/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/memchr-3df2d04dc68b3e7b/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/memchr-c44b65623915fcea/dep-lib-memchr b/target/release/.fingerprint/memchr-c44b65623915fcea/dep-lib-memchr deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/memchr-c44b65623915fcea/dep-lib-memchr and /dev/null differ diff --git a/target/release/.fingerprint/memchr-c44b65623915fcea/lib-memchr b/target/release/.fingerprint/memchr-c44b65623915fcea/lib-memchr deleted file mode 100644 index 4c14857..0000000 --- a/target/release/.fingerprint/memchr-c44b65623915fcea/lib-memchr +++ /dev/null @@ -1 +0,0 @@ -d77be312e88a7326 \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-c44b65623915fcea/lib-memchr.json b/target/release/.fingerprint/memchr-c44b65623915fcea/lib-memchr.json deleted file mode 100644 index 2ec6625..0000000 --- a/target/release/.fingerprint/memchr-c44b65623915fcea/lib-memchr.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\", \"use_std\"]","target":3556896622821756912,"profile":4339006351771724982,"path":1459616963952492450,"deps":[[6880116618428842180,"build_script_build",false,12845904763630178934]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-c44b65623915fcea/dep-lib-memchr"}}],"rustflags":[],"metadata":2920040441970090600,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/nom-6a4948a25f93776d/build-script-build-script-build b/target/release/.fingerprint/nom-6a4948a25f93776d/build-script-build-script-build deleted file mode 100644 index 11ceacf..0000000 --- a/target/release/.fingerprint/nom-6a4948a25f93776d/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -bdfdadd1b58fc80b \ No newline at end of file diff --git a/target/release/.fingerprint/nom-6a4948a25f93776d/build-script-build-script-build.json b/target/release/.fingerprint/nom-6a4948a25f93776d/build-script-build-script-build.json deleted file mode 100644 index 3fe83f0..0000000 --- a/target/release/.fingerprint/nom-6a4948a25f93776d/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"alloc\", \"default\", \"lexical\", \"lexical-core\", \"std\"]","target":10429514197457385088,"profile":10803726696109476711,"path":11475083835691326622,"deps":[[13855371118854453264,"version_check",false,2564355388229301142]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/nom-6a4948a25f93776d/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":9858338621379386705,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/nom-6a4948a25f93776d/dep-build-script-build-script-build b/target/release/.fingerprint/nom-6a4948a25f93776d/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/nom-6a4948a25f93776d/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/nom-cc13468d7cb1a4db/dep-lib-nom b/target/release/.fingerprint/nom-cc13468d7cb1a4db/dep-lib-nom deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/nom-cc13468d7cb1a4db/dep-lib-nom and /dev/null differ diff --git a/target/release/.fingerprint/nom-cc13468d7cb1a4db/lib-nom b/target/release/.fingerprint/nom-cc13468d7cb1a4db/lib-nom deleted file mode 100644 index 57a0985..0000000 --- a/target/release/.fingerprint/nom-cc13468d7cb1a4db/lib-nom +++ /dev/null @@ -1 +0,0 @@ -7150fa9b2e6213b9 \ No newline at end of file diff --git a/target/release/.fingerprint/nom-cc13468d7cb1a4db/lib-nom.json b/target/release/.fingerprint/nom-cc13468d7cb1a4db/lib-nom.json deleted file mode 100644 index bb6f4da..0000000 --- a/target/release/.fingerprint/nom-cc13468d7cb1a4db/lib-nom.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"alloc\", \"default\", \"lexical\", \"lexical-core\", \"std\"]","target":16153224878693640814,"profile":4339006351771724982,"path":9416059862566937350,"deps":[[4517326557178989942,"build_script_build",false,4149260309876816595],[6337528866793177869,"lexical_core",false,11270307025959039697],[6880116618428842180,"memchr",false,2770710925116931031]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/nom-cc13468d7cb1a4db/dep-lib-nom"}}],"rustflags":[],"metadata":9858338621379386705,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/nom-dfe7653f1f37a5b6/run-build-script-build-script-build b/target/release/.fingerprint/nom-dfe7653f1f37a5b6/run-build-script-build-script-build deleted file mode 100644 index 8efc14c..0000000 --- a/target/release/.fingerprint/nom-dfe7653f1f37a5b6/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -d3bad5a244229539 \ No newline at end of file diff --git a/target/release/.fingerprint/nom-dfe7653f1f37a5b6/run-build-script-build-script-build.json b/target/release/.fingerprint/nom-dfe7653f1f37a5b6/run-build-script-build-script-build.json deleted file mode 100644 index fdb5c88..0000000 --- a/target/release/.fingerprint/nom-dfe7653f1f37a5b6/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[4517326557178989942,"build_script_build",false,849086540829031869]],"local":[{"Precalculated":"5.1.2"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-43b7376d32138d38/dep-lib-num-traits b/target/release/.fingerprint/num-traits-43b7376d32138d38/dep-lib-num-traits deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/num-traits-43b7376d32138d38/dep-lib-num-traits and /dev/null differ diff --git a/target/release/.fingerprint/num-traits-43b7376d32138d38/lib-num-traits b/target/release/.fingerprint/num-traits-43b7376d32138d38/lib-num-traits deleted file mode 100644 index b297d15..0000000 --- a/target/release/.fingerprint/num-traits-43b7376d32138d38/lib-num-traits +++ /dev/null @@ -1 +0,0 @@ -2a405cd6de012236 \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-43b7376d32138d38/lib-num-traits.json b/target/release/.fingerprint/num-traits-43b7376d32138d38/lib-num-traits.json deleted file mode 100644 index 66b121e..0000000 --- a/target/release/.fingerprint/num-traits-43b7376d32138d38/lib-num-traits.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":5442094497191994810,"profile":4339006351771724982,"path":12700754961819203615,"deps":[[74873448883125965,"build_script_build",false,2754654061872915070]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/num-traits-43b7376d32138d38/dep-lib-num-traits"}}],"rustflags":[],"metadata":14621636500951049976,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/dep-lib-num-traits b/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/dep-lib-num-traits deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/dep-lib-num-traits and /dev/null differ diff --git a/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/lib-num-traits b/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/lib-num-traits deleted file mode 100644 index 0af525d..0000000 --- a/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/lib-num-traits +++ /dev/null @@ -1 +0,0 @@ -41f5a871d95d1a5d \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/lib-num-traits.json b/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/lib-num-traits.json deleted file mode 100644 index c0f5624..0000000 --- a/target/release/.fingerprint/num-traits-4ccb8bfa6d994b5d/lib-num-traits.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":1884808398220503866,"profile":4339006351771724982,"path":15709506461634751742,"deps":[[74873448883125965,"num_traits",false,3900682283847008298]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/num-traits-4ccb8bfa6d994b5d/dep-lib-num-traits"}}],"rustflags":[],"metadata":14621636500951049976,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-5f03bd98ed02d543/run-build-script-build-script-build b/target/release/.fingerprint/num-traits-5f03bd98ed02d543/run-build-script-build-script-build deleted file mode 100644 index c280b65..0000000 --- a/target/release/.fingerprint/num-traits-5f03bd98ed02d543/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -7ea20545467f3a26 \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-5f03bd98ed02d543/run-build-script-build-script-build.json b/target/release/.fingerprint/num-traits-5f03bd98ed02d543/run-build-script-build-script-build.json deleted file mode 100644 index 52c3a67..0000000 --- a/target/release/.fingerprint/num-traits-5f03bd98ed02d543/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[74873448883125965,"build_script_build",false,16987541453464539131]],"local":[{"RerunIfChanged":{"output":"release/build/num-traits-5f03bd98ed02d543/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-9e08d90901b368a8/build-script-build-script-build b/target/release/.fingerprint/num-traits-9e08d90901b368a8/build-script-build-script-build deleted file mode 100644 index 6f2a49a..0000000 --- a/target/release/.fingerprint/num-traits-9e08d90901b368a8/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -fb0ffab4f2debfeb \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-9e08d90901b368a8/build-script-build-script-build.json b/target/release/.fingerprint/num-traits-9e08d90901b368a8/build-script-build-script-build.json deleted file mode 100644 index cb2d810..0000000 --- a/target/release/.fingerprint/num-traits-9e08d90901b368a8/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":10088282520713642473,"profile":10803726696109476711,"path":15040436758907833892,"deps":[[9245478811527615946,"autocfg",false,1100173989487673184]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/num-traits-9e08d90901b368a8/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14621636500951049976,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-9e08d90901b368a8/dep-build-script-build-script-build b/target/release/.fingerprint/num-traits-9e08d90901b368a8/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/num-traits-9e08d90901b368a8/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/dep-lib-os_str_bytes b/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/dep-lib-os_str_bytes deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/dep-lib-os_str_bytes and /dev/null differ diff --git a/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/lib-os_str_bytes b/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/lib-os_str_bytes deleted file mode 100644 index 493d0fa..0000000 --- a/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/lib-os_str_bytes +++ /dev/null @@ -1 +0,0 @@ -2a350bd0aabd3118 \ No newline at end of file diff --git a/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/lib-os_str_bytes.json b/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/lib-os_str_bytes.json deleted file mode 100644 index a4a23d9..0000000 --- a/target/release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/lib-os_str_bytes.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"raw\"]","target":9549904701317909277,"profile":4339006351771724982,"path":2029861998491751828,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/os_str_bytes-2a7f72fe01f967fa/dep-lib-os_str_bytes"}}],"rustflags":[],"metadata":13022429581306128755,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-18051370c307f317/build-script-build-script-build b/target/release/.fingerprint/proc-macro-error-18051370c307f317/build-script-build-script-build deleted file mode 100644 index 10ca901..0000000 --- a/target/release/.fingerprint/proc-macro-error-18051370c307f317/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -57bea9765c774fb8 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-18051370c307f317/build-script-build-script-build.json b/target/release/.fingerprint/proc-macro-error-18051370c307f317/build-script-build-script-build.json deleted file mode 100644 index 60989bf..0000000 --- a/target/release/.fingerprint/proc-macro-error-18051370c307f317/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"syn\", \"syn-error\"]","target":10429514197457385088,"profile":10803726696109476711,"path":12963609038839622272,"deps":[[13855371118854453264,"version_check",false,2564355388229301142]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro-error-18051370c307f317/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":461828850819777488,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-18051370c307f317/dep-build-script-build-script-build b/target/release/.fingerprint/proc-macro-error-18051370c307f317/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/proc-macro-error-18051370c307f317/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/build-script-build-script-build b/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/build-script-build-script-build deleted file mode 100644 index 61c51f8..0000000 --- a/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -09c7dad7245c9009 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/build-script-build-script-build.json b/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/build-script-build-script-build.json deleted file mode 100644 index 7625337..0000000 --- a/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":10429514197457385088,"profile":10803726696109476711,"path":8676266547004543267,"deps":[[13855371118854453264,"version_check",false,2564355388229301142]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":18059112814646350960,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/dep-build-script-build-script-build b/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/proc-macro-error-attr-3130667d9f1d3ba9/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/dep-lib-proc-macro-error-attr b/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/dep-lib-proc-macro-error-attr deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/dep-lib-proc-macro-error-attr and /dev/null differ diff --git a/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/lib-proc-macro-error-attr b/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/lib-proc-macro-error-attr deleted file mode 100644 index e07c0e8..0000000 --- a/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/lib-proc-macro-error-attr +++ /dev/null @@ -1 +0,0 @@ -1545dff69f67dd3e \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/lib-proc-macro-error-attr.json b/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/lib-proc-macro-error-attr.json deleted file mode 100644 index c93adf0..0000000 --- a/target/release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/lib-proc-macro-error-attr.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":7238498024100358101,"profile":10803726696109476711,"path":17206864518569540829,"deps":[[4545122694276227010,"build_script_build",false,8618931843673040104],[6555828555352911943,"quote",false,16163107569172795120],[9691534041096727393,"proc_macro2",false,5243241553545819983]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro-error-attr-7bb310d49ba63a47/dep-lib-proc-macro-error-attr"}}],"rustflags":[],"metadata":18059112814646350960,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-attr-eb9cae79429bba7f/run-build-script-build-script-build b/target/release/.fingerprint/proc-macro-error-attr-eb9cae79429bba7f/run-build-script-build-script-build deleted file mode 100644 index a9f2c7d..0000000 --- a/target/release/.fingerprint/proc-macro-error-attr-eb9cae79429bba7f/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -e8246fc5d8989c77 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-attr-eb9cae79429bba7f/run-build-script-build-script-build.json b/target/release/.fingerprint/proc-macro-error-attr-eb9cae79429bba7f/run-build-script-build-script-build.json deleted file mode 100644 index 7b23b62..0000000 --- a/target/release/.fingerprint/proc-macro-error-attr-eb9cae79429bba7f/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[4545122694276227010,"build_script_build",false,689152056297703177]],"local":[{"Precalculated":"1.0.4"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-c851645ce98833f9/run-build-script-build-script-build b/target/release/.fingerprint/proc-macro-error-c851645ce98833f9/run-build-script-build-script-build deleted file mode 100644 index 4c24ec2..0000000 --- a/target/release/.fingerprint/proc-macro-error-c851645ce98833f9/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -950f932d491ddf91 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-c851645ce98833f9/run-build-script-build-script-build.json b/target/release/.fingerprint/proc-macro-error-c851645ce98833f9/run-build-script-build-script-build.json deleted file mode 100644 index 8e3dad1..0000000 --- a/target/release/.fingerprint/proc-macro-error-c851645ce98833f9/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[14484104962928065257,"build_script_build",false,13280965065150414423]],"local":[{"Precalculated":"1.0.4"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/dep-lib-proc-macro-error b/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/dep-lib-proc-macro-error deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/dep-lib-proc-macro-error and /dev/null differ diff --git a/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/lib-proc-macro-error b/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/lib-proc-macro-error deleted file mode 100644 index cb40001..0000000 --- a/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/lib-proc-macro-error +++ /dev/null @@ -1 +0,0 @@ -1816f248a20caed6 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/lib-proc-macro-error.json b/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/lib-proc-macro-error.json deleted file mode 100644 index 9d3d3e6..0000000 --- a/target/release/.fingerprint/proc-macro-error-f4addad7fafcd892/lib-proc-macro-error.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"syn\", \"syn-error\"]","target":15944552950266076289,"profile":10803726696109476711,"path":11562017795984178853,"deps":[[4545122694276227010,"proc_macro_error_attr",false,4529890736943875349],[6555828555352911943,"quote",false,16163107569172795120],[9691534041096727393,"proc_macro2",false,5243241553545819983],[10133531055205208420,"syn",false,15286578023415744750],[14484104962928065257,"build_script_build",false,10511152255440457621]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro-error-f4addad7fafcd892/dep-lib-proc-macro-error"}}],"rustflags":[],"metadata":461828850819777488,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-136efe43110f6f45/build-script-build-script-build b/target/release/.fingerprint/proc-macro2-136efe43110f6f45/build-script-build-script-build deleted file mode 100644 index 2981bda..0000000 --- a/target/release/.fingerprint/proc-macro2-136efe43110f6f45/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -17a87fc28c2cfbdc \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-136efe43110f6f45/build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-136efe43110f6f45/build-script-build-script-build.json deleted file mode 100644 index ccfee86..0000000 --- a/target/release/.fingerprint/proc-macro2-136efe43110f6f45/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"proc-macro\"]","target":10429514197457385088,"profile":10803726696109476711,"path":3386264660220210497,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-136efe43110f6f45/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14399165043509735265,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-136efe43110f6f45/dep-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-136efe43110f6f45/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/proc-macro2-136efe43110f6f45/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/proc-macro2-611c77acf2619bc7/run-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-611c77acf2619bc7/run-build-script-build-script-build deleted file mode 100644 index ab4ef4e..0000000 --- a/target/release/.fingerprint/proc-macro2-611c77acf2619bc7/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -57646ae623699d66 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-611c77acf2619bc7/run-build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-611c77acf2619bc7/run-build-script-build-script-build.json deleted file mode 100644 index 50f6a8f..0000000 --- a/target/release/.fingerprint/proc-macro2-611c77acf2619bc7/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[9691534041096727393,"build_script_build",false,15923369890568710167]],"local":[{"RerunIfChanged":{"output":"release/build/proc-macro2-611c77acf2619bc7/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/dep-lib-proc-macro2 b/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/dep-lib-proc-macro2 deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/dep-lib-proc-macro2 and /dev/null differ diff --git a/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/lib-proc-macro2 b/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/lib-proc-macro2 deleted file mode 100644 index c2816b8..0000000 --- a/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/lib-proc-macro2 +++ /dev/null @@ -1 +0,0 @@ -4f77aabe69bcc348 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/lib-proc-macro2.json b/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/lib-proc-macro2.json deleted file mode 100644 index 2b399d0..0000000 --- a/target/release/.fingerprint/proc-macro2-8c3af62c3486e469/lib-proc-macro2.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"proc-macro\"]","target":2048968770155376255,"profile":10803726696109476711,"path":15778324037007122497,"deps":[[7525965102115876890,"unicode_xid",false,17545630877083281869],[9691534041096727393,"build_script_build",false,7394181766122726487]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-8c3af62c3486e469/dep-lib-proc-macro2"}}],"rustflags":[],"metadata":14399165043509735265,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/quote-eafe4baa7c1bf060/dep-lib-quote b/target/release/.fingerprint/quote-eafe4baa7c1bf060/dep-lib-quote deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/quote-eafe4baa7c1bf060/dep-lib-quote and /dev/null differ diff --git a/target/release/.fingerprint/quote-eafe4baa7c1bf060/lib-quote b/target/release/.fingerprint/quote-eafe4baa7c1bf060/lib-quote deleted file mode 100644 index 076f105..0000000 --- a/target/release/.fingerprint/quote-eafe4baa7c1bf060/lib-quote +++ /dev/null @@ -1 +0,0 @@ -f0cef8c6b2e44ee0 \ No newline at end of file diff --git a/target/release/.fingerprint/quote-eafe4baa7c1bf060/lib-quote.json b/target/release/.fingerprint/quote-eafe4baa7c1bf060/lib-quote.json deleted file mode 100644 index e976426..0000000 --- a/target/release/.fingerprint/quote-eafe4baa7c1bf060/lib-quote.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"proc-macro\"]","target":5822405929374872038,"profile":10803726696109476711,"path":17556376264291188435,"deps":[[9691534041096727393,"proc_macro2",false,5243241553545819983]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/quote-eafe4baa7c1bf060/dep-lib-quote"}}],"rustflags":[],"metadata":2717943770976187624,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/dep-lib-regex b/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/dep-lib-regex deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/dep-lib-regex and /dev/null differ diff --git a/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/lib-regex b/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/lib-regex deleted file mode 100644 index 2f139c8..0000000 --- a/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/lib-regex +++ /dev/null @@ -1 +0,0 @@ -55ea8e9f95e4156e \ No newline at end of file diff --git a/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/lib-regex.json b/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/lib-regex.json deleted file mode 100644 index 96d63d1..0000000 --- a/target/release/.fingerprint/regex-a01d99d1d1a9d2f8/lib-regex.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"aho-corasick\", \"default\", \"memchr\", \"perf\", \"perf-cache\", \"perf-dfa\", \"perf-inline\", \"perf-literal\", \"std\", \"thread_local\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":7390816642920051939,"profile":4339006351771724982,"path":17827442033453997976,"deps":[[1391314791338092638,"thread_local",false,6762560830736858021],[6880116618428842180,"memchr",false,2770710925116931031],[10836433505148705849,"regex_syntax",false,13230533892136976670],[11393665882505212572,"aho_corasick",false,12402329498661446742]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-a01d99d1d1a9d2f8/dep-lib-regex"}}],"rustflags":[],"metadata":1738036602712356696,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-50d37af1de76b871/dep-lib-regex-syntax b/target/release/.fingerprint/regex-syntax-50d37af1de76b871/dep-lib-regex-syntax deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/regex-syntax-50d37af1de76b871/dep-lib-regex-syntax and /dev/null differ diff --git a/target/release/.fingerprint/regex-syntax-50d37af1de76b871/lib-regex-syntax b/target/release/.fingerprint/regex-syntax-50d37af1de76b871/lib-regex-syntax deleted file mode 100644 index fe5dd8a..0000000 --- a/target/release/.fingerprint/regex-syntax-50d37af1de76b871/lib-regex-syntax +++ /dev/null @@ -1 +0,0 @@ -1e4197fd794c9cb7 \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-50d37af1de76b871/lib-regex-syntax.json b/target/release/.fingerprint/regex-syntax-50d37af1de76b871/lib-regex-syntax.json deleted file mode 100644 index 8591062..0000000 --- a/target/release/.fingerprint/regex-syntax-50d37af1de76b871/lib-regex-syntax.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":2978177687591875995,"profile":4339006351771724982,"path":18438182417484087667,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-syntax-50d37af1de76b871/dep-lib-regex-syntax"}}],"rustflags":[],"metadata":14049147179425589550,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rust-ini-26103a64a58d7c80/dep-lib-ini b/target/release/.fingerprint/rust-ini-26103a64a58d7c80/dep-lib-ini deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/rust-ini-26103a64a58d7c80/dep-lib-ini and /dev/null differ diff --git a/target/release/.fingerprint/rust-ini-26103a64a58d7c80/lib-ini b/target/release/.fingerprint/rust-ini-26103a64a58d7c80/lib-ini deleted file mode 100644 index 1c02b30..0000000 --- a/target/release/.fingerprint/rust-ini-26103a64a58d7c80/lib-ini +++ /dev/null @@ -1 +0,0 @@ -b44bfbabb6234592 \ No newline at end of file diff --git a/target/release/.fingerprint/rust-ini-26103a64a58d7c80/lib-ini.json b/target/release/.fingerprint/rust-ini-26103a64a58d7c80/lib-ini.json deleted file mode 100644 index d171dc3..0000000 --- a/target/release/.fingerprint/rust-ini-26103a64a58d7c80/lib-ini.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":11336470120788222128,"profile":4339006351771724982,"path":10331343467074604345,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rust-ini-26103a64a58d7c80/dep-lib-ini"}}],"rustflags":[],"metadata":17878412032360262173,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-947076e03a8bfb36/dep-lib-ryu b/target/release/.fingerprint/ryu-947076e03a8bfb36/dep-lib-ryu deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/ryu-947076e03a8bfb36/dep-lib-ryu and /dev/null differ diff --git a/target/release/.fingerprint/ryu-947076e03a8bfb36/lib-ryu b/target/release/.fingerprint/ryu-947076e03a8bfb36/lib-ryu deleted file mode 100644 index a2f2dde..0000000 --- a/target/release/.fingerprint/ryu-947076e03a8bfb36/lib-ryu +++ /dev/null @@ -1 +0,0 @@ -71445fdb16af1ba9 \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-947076e03a8bfb36/lib-ryu.json b/target/release/.fingerprint/ryu-947076e03a8bfb36/lib-ryu.json deleted file mode 100644 index 55b4733..0000000 --- a/target/release/.fingerprint/ryu-947076e03a8bfb36/lib-ryu.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":8482093551284182939,"profile":4339006351771724982,"path":773979749910094741,"deps":[[1318244780073258608,"build_script_build",false,10215047493490278194]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ryu-947076e03a8bfb36/dep-lib-ryu"}}],"rustflags":[],"metadata":10387617312689919117,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-e4213df9ff9d99ae/run-build-script-build-script-build b/target/release/.fingerprint/ryu-e4213df9ff9d99ae/run-build-script-build-script-build deleted file mode 100644 index 60d6135..0000000 --- a/target/release/.fingerprint/ryu-e4213df9ff9d99ae/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -327f3bdd9223c38d \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-e4213df9ff9d99ae/run-build-script-build-script-build.json b/target/release/.fingerprint/ryu-e4213df9ff9d99ae/run-build-script-build-script-build.json deleted file mode 100644 index cf0aa83..0000000 --- a/target/release/.fingerprint/ryu-e4213df9ff9d99ae/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[1318244780073258608,"build_script_build",false,17193695119325725997]],"local":[{"Precalculated":"1.0.5"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-f51c263ba48db9fd/build-script-build-script-build b/target/release/.fingerprint/ryu-f51c263ba48db9fd/build-script-build-script-build deleted file mode 100644 index 4cb5e1e..0000000 --- a/target/release/.fingerprint/ryu-f51c263ba48db9fd/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -2d05c76b9d469cee \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-f51c263ba48db9fd/build-script-build-script-build.json b/target/release/.fingerprint/ryu-f51c263ba48db9fd/build-script-build-script-build.json deleted file mode 100644 index 9bd50c7..0000000 --- a/target/release/.fingerprint/ryu-f51c263ba48db9fd/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":10429514197457385088,"profile":10803726696109476711,"path":39640586639217779,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ryu-f51c263ba48db9fd/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":10387617312689919117,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-f51c263ba48db9fd/dep-build-script-build-script-build b/target/release/.fingerprint/ryu-f51c263ba48db9fd/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/ryu-f51c263ba48db9fd/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/serde-0e25c32ea550a82a/run-build-script-build-script-build b/target/release/.fingerprint/serde-0e25c32ea550a82a/run-build-script-build-script-build deleted file mode 100644 index e3e5c96..0000000 --- a/target/release/.fingerprint/serde-0e25c32ea550a82a/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -f9e1eb37045845b2 \ No newline at end of file diff --git a/target/release/.fingerprint/serde-0e25c32ea550a82a/run-build-script-build-script-build.json b/target/release/.fingerprint/serde-0e25c32ea550a82a/run-build-script-build-script-build.json deleted file mode 100644 index ef18d45..0000000 --- a/target/release/.fingerprint/serde-0e25c32ea550a82a/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[6669303792743813468,"build_script_build",false,11501670213273532012]],"local":[{"Precalculated":"1.0.114"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-7291fec13c047b66/dep-lib-serde b/target/release/.fingerprint/serde-7291fec13c047b66/dep-lib-serde deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/serde-7291fec13c047b66/dep-lib-serde and /dev/null differ diff --git a/target/release/.fingerprint/serde-7291fec13c047b66/lib-serde b/target/release/.fingerprint/serde-7291fec13c047b66/lib-serde deleted file mode 100644 index e6c2045..0000000 --- a/target/release/.fingerprint/serde-7291fec13c047b66/lib-serde +++ /dev/null @@ -1 +0,0 @@ -d78215df3ade55dc \ No newline at end of file diff --git a/target/release/.fingerprint/serde-7291fec13c047b66/lib-serde.json b/target/release/.fingerprint/serde-7291fec13c047b66/lib-serde.json deleted file mode 100644 index 7f3cc1a..0000000 --- a/target/release/.fingerprint/serde-7291fec13c047b66/lib-serde.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":5810590015908626318,"profile":4339006351771724982,"path":8844770840105865091,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-7291fec13c047b66/dep-lib-serde"}}],"rustflags":[],"metadata":4294831045081053376,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-8257586245dd2ff1/build-script-build-script-build b/target/release/.fingerprint/serde-8257586245dd2ff1/build-script-build-script-build deleted file mode 100644 index 2db8613..0000000 --- a/target/release/.fingerprint/serde-8257586245dd2ff1/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -6c36dcd91e249e9f \ No newline at end of file diff --git a/target/release/.fingerprint/serde-8257586245dd2ff1/build-script-build-script-build.json b/target/release/.fingerprint/serde-8257586245dd2ff1/build-script-build-script-build.json deleted file mode 100644 index 697d596..0000000 --- a/target/release/.fingerprint/serde-8257586245dd2ff1/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":10088282520713642473,"profile":10803726696109476711,"path":418522717304223514,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-8257586245dd2ff1/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":3767376778934503013,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-8257586245dd2ff1/dep-build-script-build-script-build b/target/release/.fingerprint/serde-8257586245dd2ff1/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/serde-8257586245dd2ff1/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/serde-fcd1a60d64ffce08/dep-lib-serde b/target/release/.fingerprint/serde-fcd1a60d64ffce08/dep-lib-serde deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/serde-fcd1a60d64ffce08/dep-lib-serde and /dev/null differ diff --git a/target/release/.fingerprint/serde-fcd1a60d64ffce08/lib-serde b/target/release/.fingerprint/serde-fcd1a60d64ffce08/lib-serde deleted file mode 100644 index 8bfc369..0000000 --- a/target/release/.fingerprint/serde-fcd1a60d64ffce08/lib-serde +++ /dev/null @@ -1 +0,0 @@ -921fd348da196abc \ No newline at end of file diff --git a/target/release/.fingerprint/serde-fcd1a60d64ffce08/lib-serde.json b/target/release/.fingerprint/serde-fcd1a60d64ffce08/lib-serde.json deleted file mode 100644 index 1afc3fd..0000000 --- a/target/release/.fingerprint/serde-fcd1a60d64ffce08/lib-serde.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":5810590015908626318,"profile":4339006351771724982,"path":8527821119012349671,"deps":[[6669303792743813468,"build_script_build",false,12845770287285527033]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-fcd1a60d64ffce08/dep-lib-serde"}}],"rustflags":[],"metadata":3767376778934503013,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/dep-lib-serde-hjson b/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/dep-lib-serde-hjson deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/dep-lib-serde-hjson and /dev/null differ diff --git a/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/lib-serde-hjson b/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/lib-serde-hjson deleted file mode 100644 index 61c2103..0000000 --- a/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/lib-serde-hjson +++ /dev/null @@ -1 +0,0 @@ -46db7a0b1c9e6507 \ No newline at end of file diff --git a/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/lib-serde-hjson.json b/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/lib-serde-hjson.json deleted file mode 100644 index 57ff49b..0000000 --- a/target/release/.fingerprint/serde-hjson-b28b7df10cde90cf/lib-serde-hjson.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"linked-hash-map\", \"preserve_order\"]","target":9586836686333116115,"profile":4339006351771724982,"path":5252486088518579943,"deps":[[1067246802168945855,"linked_hash_map",false,5164273606433263349],[2845308538234926458,"serde",false,15876840405796750039],[6597340469275219291,"num_traits",false,6708777783417959745],[8536350174477403560,"lazy_static",false,1494062680194874578],[10798631036892155566,"regex",false,7932497649961200213]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-hjson-b28b7df10cde90cf/dep-lib-serde-hjson"}}],"rustflags":[],"metadata":6348319111785742344,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-735629205996a197/dep-lib-serde_json b/target/release/.fingerprint/serde_json-735629205996a197/dep-lib-serde_json deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/serde_json-735629205996a197/dep-lib-serde_json and /dev/null differ diff --git a/target/release/.fingerprint/serde_json-735629205996a197/lib-serde_json b/target/release/.fingerprint/serde_json-735629205996a197/lib-serde_json deleted file mode 100644 index 296fac6..0000000 --- a/target/release/.fingerprint/serde_json-735629205996a197/lib-serde_json +++ /dev/null @@ -1 +0,0 @@ -99a25e22659dc348 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-735629205996a197/lib-serde_json.json b/target/release/.fingerprint/serde_json-735629205996a197/lib-serde_json.json deleted file mode 100644 index 1c90dd2..0000000 --- a/target/release/.fingerprint/serde_json-735629205996a197/lib-serde_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":1408072293575621041,"profile":4339006351771724982,"path":5482146969817523580,"deps":[[1318244780073258608,"ryu",false,12185525729485603953],[6669303792743813468,"serde",false,13576692451977142162],[9551578576403482121,"itoa",false,3556381877401422268],[15789920708546520010,"build_script_build",false,17314993859709248381]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_json-735629205996a197/dep-lib-serde_json"}}],"rustflags":[],"metadata":16261601059619201932,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-a1676b9f242b82a0/run-build-script-build-script-build b/target/release/.fingerprint/serde_json-a1676b9f242b82a0/run-build-script-build-script-build deleted file mode 100644 index 1bc822a..0000000 --- a/target/release/.fingerprint/serde_json-a1676b9f242b82a0/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -7d230a382d374bf0 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-a1676b9f242b82a0/run-build-script-build-script-build.json b/target/release/.fingerprint/serde_json-a1676b9f242b82a0/run-build-script-build-script-build.json deleted file mode 100644 index 5815982..0000000 --- a/target/release/.fingerprint/serde_json-a1676b9f242b82a0/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[15789920708546520010,"build_script_build",false,11397539372039306547]],"local":[{"Precalculated":"1.0.56"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-cebdf3d160825960/build-script-build-script-build b/target/release/.fingerprint/serde_json-cebdf3d160825960/build-script-build-script-build deleted file mode 100644 index 15602ea..0000000 --- a/target/release/.fingerprint/serde_json-cebdf3d160825960/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -337dee0fac312c9e \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-cebdf3d160825960/build-script-build-script-build.json b/target/release/.fingerprint/serde_json-cebdf3d160825960/build-script-build-script-build.json deleted file mode 100644 index 13c2d15..0000000 --- a/target/release/.fingerprint/serde_json-cebdf3d160825960/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\", \"std\"]","target":10429514197457385088,"profile":10803726696109476711,"path":9749084709035634474,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_json-cebdf3d160825960/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":16261601059619201932,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-cebdf3d160825960/dep-build-script-build-script-build b/target/release/.fingerprint/serde_json-cebdf3d160825960/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/serde_json-cebdf3d160825960/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/serde_test-6e2b08d7187046f1/dep-lib-serde_test b/target/release/.fingerprint/serde_test-6e2b08d7187046f1/dep-lib-serde_test deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/serde_test-6e2b08d7187046f1/dep-lib-serde_test and /dev/null differ diff --git a/target/release/.fingerprint/serde_test-6e2b08d7187046f1/lib-serde_test b/target/release/.fingerprint/serde_test-6e2b08d7187046f1/lib-serde_test deleted file mode 100644 index 9226731..0000000 --- a/target/release/.fingerprint/serde_test-6e2b08d7187046f1/lib-serde_test +++ /dev/null @@ -1 +0,0 @@ -8551f13fd3f108d3 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_test-6e2b08d7187046f1/lib-serde_test.json b/target/release/.fingerprint/serde_test-6e2b08d7187046f1/lib-serde_test.json deleted file mode 100644 index 1eacab3..0000000 --- a/target/release/.fingerprint/serde_test-6e2b08d7187046f1/lib-serde_test.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":4889300382580070512,"profile":4339006351771724982,"path":12491365580621188760,"deps":[[2845308538234926458,"serde",false,15876840405796750039]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_test-6e2b08d7187046f1/dep-lib-serde_test"}}],"rustflags":[],"metadata":11839982867169733076,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/static_assertions-8642131a574c757d/dep-lib-static_assertions b/target/release/.fingerprint/static_assertions-8642131a574c757d/dep-lib-static_assertions deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/static_assertions-8642131a574c757d/dep-lib-static_assertions and /dev/null differ diff --git a/target/release/.fingerprint/static_assertions-8642131a574c757d/lib-static_assertions b/target/release/.fingerprint/static_assertions-8642131a574c757d/lib-static_assertions deleted file mode 100644 index 3718db9..0000000 --- a/target/release/.fingerprint/static_assertions-8642131a574c757d/lib-static_assertions +++ /dev/null @@ -1 +0,0 @@ -6af99ef804a2d8f2 \ No newline at end of file diff --git a/target/release/.fingerprint/static_assertions-8642131a574c757d/lib-static_assertions.json b/target/release/.fingerprint/static_assertions-8642131a574c757d/lib-static_assertions.json deleted file mode 100644 index 116c847..0000000 --- a/target/release/.fingerprint/static_assertions-8642131a574c757d/lib-static_assertions.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":15431038595667712568,"profile":4339006351771724982,"path":2709264505723991621,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/static_assertions-8642131a574c757d/dep-lib-static_assertions"}}],"rustflags":[],"metadata":16420956093413671072,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/strsim-26c573e37cfcad18/dep-lib-strsim b/target/release/.fingerprint/strsim-26c573e37cfcad18/dep-lib-strsim deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/strsim-26c573e37cfcad18/dep-lib-strsim and /dev/null differ diff --git a/target/release/.fingerprint/strsim-26c573e37cfcad18/lib-strsim b/target/release/.fingerprint/strsim-26c573e37cfcad18/lib-strsim deleted file mode 100644 index 94bbd22..0000000 --- a/target/release/.fingerprint/strsim-26c573e37cfcad18/lib-strsim +++ /dev/null @@ -1 +0,0 @@ -1986d5df396666d9 \ No newline at end of file diff --git a/target/release/.fingerprint/strsim-26c573e37cfcad18/lib-strsim.json b/target/release/.fingerprint/strsim-26c573e37cfcad18/lib-strsim.json deleted file mode 100644 index ce2acdd..0000000 --- a/target/release/.fingerprint/strsim-26c573e37cfcad18/lib-strsim.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":12929025958079082890,"profile":4339006351771724982,"path":6252786483479419743,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/strsim-26c573e37cfcad18/dep-lib-strsim"}}],"rustflags":[],"metadata":13471714363280858619,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/syn-12af7e02de91c4e7/dep-lib-syn b/target/release/.fingerprint/syn-12af7e02de91c4e7/dep-lib-syn deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/syn-12af7e02de91c4e7/dep-lib-syn and /dev/null differ diff --git a/target/release/.fingerprint/syn-12af7e02de91c4e7/lib-syn b/target/release/.fingerprint/syn-12af7e02de91c4e7/lib-syn deleted file mode 100644 index fb632fb..0000000 --- a/target/release/.fingerprint/syn-12af7e02de91c4e7/lib-syn +++ /dev/null @@ -1 +0,0 @@ -ee08fd74b8d524d4 \ No newline at end of file diff --git a/target/release/.fingerprint/syn-12af7e02de91c4e7/lib-syn.json b/target/release/.fingerprint/syn-12af7e02de91c4e7/lib-syn.json deleted file mode 100644 index d1ef38a..0000000 --- a/target/release/.fingerprint/syn-12af7e02de91c4e7/lib-syn.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"clone-impls\", \"default\", \"derive\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"quote\"]","target":18164850629821630209,"profile":10803726696109476711,"path":17414251792957665410,"deps":[[6555828555352911943,"quote",false,16163107569172795120],[7525965102115876890,"unicode_xid",false,17545630877083281869],[9691534041096727393,"proc_macro2",false,5243241553545819983],[10133531055205208420,"build_script_build",false,3560304309296830758]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-12af7e02de91c4e7/dep-lib-syn"}}],"rustflags":[],"metadata":6886477143387768027,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/syn-b38a1eecdb910211/build-script-build-script-build b/target/release/.fingerprint/syn-b38a1eecdb910211/build-script-build-script-build deleted file mode 100644 index 6b79bb1..0000000 --- a/target/release/.fingerprint/syn-b38a1eecdb910211/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -a21e00a46d0d61cf \ No newline at end of file diff --git a/target/release/.fingerprint/syn-b38a1eecdb910211/build-script-build-script-build.json b/target/release/.fingerprint/syn-b38a1eecdb910211/build-script-build-script-build.json deleted file mode 100644 index 0850d5b..0000000 --- a/target/release/.fingerprint/syn-b38a1eecdb910211/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"clone-impls\", \"default\", \"derive\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"quote\"]","target":10429514197457385088,"profile":10803726696109476711,"path":6739564770573666392,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-b38a1eecdb910211/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":6886477143387768027,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/syn-b38a1eecdb910211/dep-build-script-build-script-build b/target/release/.fingerprint/syn-b38a1eecdb910211/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/syn-b38a1eecdb910211/dep-build-script-build-script-build and /dev/null differ diff --git a/target/release/.fingerprint/syn-d4a547281a1b9843/run-build-script-build-script-build b/target/release/.fingerprint/syn-d4a547281a1b9843/run-build-script-build-script-build deleted file mode 100644 index b180648..0000000 --- a/target/release/.fingerprint/syn-d4a547281a1b9843/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -2619eeefe7bd6831 \ No newline at end of file diff --git a/target/release/.fingerprint/syn-d4a547281a1b9843/run-build-script-build-script-build.json b/target/release/.fingerprint/syn-d4a547281a1b9843/run-build-script-build-script-build.json deleted file mode 100644 index 6a82335..0000000 --- a/target/release/.fingerprint/syn-d4a547281a1b9843/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"","target":0,"profile":0,"path":0,"deps":[[10133531055205208420,"build_script_build",false,14943239803146084002]],"local":[{"Precalculated":"1.0.33"}],"rustflags":[],"metadata":0,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/termcolor-9965aade8290d241/dep-lib-termcolor b/target/release/.fingerprint/termcolor-9965aade8290d241/dep-lib-termcolor deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/termcolor-9965aade8290d241/dep-lib-termcolor and /dev/null differ diff --git a/target/release/.fingerprint/termcolor-9965aade8290d241/lib-termcolor b/target/release/.fingerprint/termcolor-9965aade8290d241/lib-termcolor deleted file mode 100644 index 0d8ff4f..0000000 --- a/target/release/.fingerprint/termcolor-9965aade8290d241/lib-termcolor +++ /dev/null @@ -1 +0,0 @@ -a97357f693c2da8c \ No newline at end of file diff --git a/target/release/.fingerprint/termcolor-9965aade8290d241/lib-termcolor.json b/target/release/.fingerprint/termcolor-9965aade8290d241/lib-termcolor.json deleted file mode 100644 index db2ba78..0000000 --- a/target/release/.fingerprint/termcolor-9965aade8290d241/lib-termcolor.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":2658736100282981150,"profile":4339006351771724982,"path":1203378632633051657,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/termcolor-9965aade8290d241/dep-lib-termcolor"}}],"rustflags":[],"metadata":5219475942417176210,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/textwrap-ba51af69fce8bf78/dep-lib-textwrap b/target/release/.fingerprint/textwrap-ba51af69fce8bf78/dep-lib-textwrap deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/textwrap-ba51af69fce8bf78/dep-lib-textwrap and /dev/null differ diff --git a/target/release/.fingerprint/textwrap-ba51af69fce8bf78/lib-textwrap b/target/release/.fingerprint/textwrap-ba51af69fce8bf78/lib-textwrap deleted file mode 100644 index 7e24c0c..0000000 --- a/target/release/.fingerprint/textwrap-ba51af69fce8bf78/lib-textwrap +++ /dev/null @@ -1 +0,0 @@ -d8a3e92583f4d3e6 \ No newline at end of file diff --git a/target/release/.fingerprint/textwrap-ba51af69fce8bf78/lib-textwrap.json b/target/release/.fingerprint/textwrap-ba51af69fce8bf78/lib-textwrap.json deleted file mode 100644 index 0d417b8..0000000 --- a/target/release/.fingerprint/textwrap-ba51af69fce8bf78/lib-textwrap.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":13474309292703966866,"profile":4339006351771724982,"path":18186150501300994947,"deps":[[10632722147547604258,"unicode_width",false,14996014898286880739]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/textwrap-ba51af69fce8bf78/dep-lib-textwrap"}}],"rustflags":[],"metadata":10480145831244275200,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/thread_local-9a90c0c2354361f2/dep-lib-thread_local b/target/release/.fingerprint/thread_local-9a90c0c2354361f2/dep-lib-thread_local deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/thread_local-9a90c0c2354361f2/dep-lib-thread_local and /dev/null differ diff --git a/target/release/.fingerprint/thread_local-9a90c0c2354361f2/lib-thread_local b/target/release/.fingerprint/thread_local-9a90c0c2354361f2/lib-thread_local deleted file mode 100644 index b2c3ede..0000000 --- a/target/release/.fingerprint/thread_local-9a90c0c2354361f2/lib-thread_local +++ /dev/null @@ -1 +0,0 @@ -a57b0af83e71d95d \ No newline at end of file diff --git a/target/release/.fingerprint/thread_local-9a90c0c2354361f2/lib-thread_local.json b/target/release/.fingerprint/thread_local-9a90c0c2354361f2/lib-thread_local.json deleted file mode 100644 index b7126bb..0000000 --- a/target/release/.fingerprint/thread_local-9a90c0c2354361f2/lib-thread_local.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":729708395993395097,"profile":4339006351771724982,"path":7441025110189026903,"deps":[[8536350174477403560,"lazy_static",false,1494062680194874578]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/thread_local-9a90c0c2354361f2/dep-lib-thread_local"}}],"rustflags":[],"metadata":7456086158600751396,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/toml-468b7cd3ec291e4d/lib-toml b/target/release/.fingerprint/toml-468b7cd3ec291e4d/lib-toml deleted file mode 100644 index abdf9c8..0000000 --- a/target/release/.fingerprint/toml-468b7cd3ec291e4d/lib-toml +++ /dev/null @@ -1 +0,0 @@ -4257435da04346b9 \ No newline at end of file diff --git a/target/release/.fingerprint/toml-468b7cd3ec291e4d/lib-toml.json b/target/release/.fingerprint/toml-468b7cd3ec291e4d/lib-toml.json deleted file mode 100644 index 7490062..0000000 --- a/target/release/.fingerprint/toml-468b7cd3ec291e4d/lib-toml.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\"]","target":566170731969822100,"profile":4339006351771724982,"path":4076545538243627438,"deps":[[6669303792743813468,"serde",false,13576692451977142162]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/toml-468b7cd3ec291e4d/dep-lib-toml"}}],"rustflags":[],"metadata":15823223228428447826,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/dep-lib-unicode-segmentation b/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/dep-lib-unicode-segmentation deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/dep-lib-unicode-segmentation and /dev/null differ diff --git a/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/lib-unicode-segmentation b/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/lib-unicode-segmentation deleted file mode 100644 index fbe0ed2..0000000 --- a/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/lib-unicode-segmentation +++ /dev/null @@ -1 +0,0 @@ -21b0e1e8b3d4d6d7 \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/lib-unicode-segmentation.json b/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/lib-unicode-segmentation.json deleted file mode 100644 index 5f99de5..0000000 --- a/target/release/.fingerprint/unicode-segmentation-f5863c0811ff9590/lib-unicode-segmentation.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":897670058848277429,"profile":10803726696109476711,"path":1753709707019850717,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/unicode-segmentation-f5863c0811ff9590/dep-lib-unicode-segmentation"}}],"rustflags":[],"metadata":11806978865797999234,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-width-5f4356788e200ee8/dep-lib-unicode-width b/target/release/.fingerprint/unicode-width-5f4356788e200ee8/dep-lib-unicode-width deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/unicode-width-5f4356788e200ee8/dep-lib-unicode-width and /dev/null differ diff --git a/target/release/.fingerprint/unicode-width-5f4356788e200ee8/lib-unicode-width b/target/release/.fingerprint/unicode-width-5f4356788e200ee8/lib-unicode-width deleted file mode 100644 index 320497a..0000000 --- a/target/release/.fingerprint/unicode-width-5f4356788e200ee8/lib-unicode-width +++ /dev/null @@ -1 +0,0 @@ -e3e7da02198c1cd0 \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-width-5f4356788e200ee8/lib-unicode-width.json b/target/release/.fingerprint/unicode-width-5f4356788e200ee8/lib-unicode-width.json deleted file mode 100644 index 3e6022d..0000000 --- a/target/release/.fingerprint/unicode-width-5f4356788e200ee8/lib-unicode-width.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\"]","target":15944948236048757814,"profile":4339006351771724982,"path":5216424561620975479,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/unicode-width-5f4356788e200ee8/dep-lib-unicode-width"}}],"rustflags":[],"metadata":2060532119256820226,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-xid-8663f59690402b5f/dep-lib-unicode-xid b/target/release/.fingerprint/unicode-xid-8663f59690402b5f/dep-lib-unicode-xid deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/unicode-xid-8663f59690402b5f/dep-lib-unicode-xid and /dev/null differ diff --git a/target/release/.fingerprint/unicode-xid-8663f59690402b5f/lib-unicode-xid b/target/release/.fingerprint/unicode-xid-8663f59690402b5f/lib-unicode-xid deleted file mode 100644 index 77a85cd..0000000 --- a/target/release/.fingerprint/unicode-xid-8663f59690402b5f/lib-unicode-xid +++ /dev/null @@ -1 +0,0 @@ -cda9ac6c529a7ef3 \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-xid-8663f59690402b5f/lib-unicode-xid.json b/target/release/.fingerprint/unicode-xid-8663f59690402b5f/lib-unicode-xid.json deleted file mode 100644 index 1a8d360..0000000 --- a/target/release/.fingerprint/unicode-xid-8663f59690402b5f/lib-unicode-xid.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[\"default\"]","target":17781475209714866777,"profile":10803726696109476711,"path":18105095019634073149,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/unicode-xid-8663f59690402b5f/dep-lib-unicode-xid"}}],"rustflags":[],"metadata":8984739024795042354,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/vec_map-405e6da89d886d17/dep-lib-vec_map b/target/release/.fingerprint/vec_map-405e6da89d886d17/dep-lib-vec_map deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/vec_map-405e6da89d886d17/dep-lib-vec_map and /dev/null differ diff --git a/target/release/.fingerprint/vec_map-405e6da89d886d17/lib-vec_map b/target/release/.fingerprint/vec_map-405e6da89d886d17/lib-vec_map deleted file mode 100644 index 43275f2..0000000 --- a/target/release/.fingerprint/vec_map-405e6da89d886d17/lib-vec_map +++ /dev/null @@ -1 +0,0 @@ -8ad40388a33a605f \ No newline at end of file diff --git a/target/release/.fingerprint/vec_map-405e6da89d886d17/lib-vec_map.json b/target/release/.fingerprint/vec_map-405e6da89d886d17/lib-vec_map.json deleted file mode 100644 index 8e0ce51..0000000 --- a/target/release/.fingerprint/vec_map-405e6da89d886d17/lib-vec_map.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":6120524263165805134,"profile":4339006351771724982,"path":12496488990261332464,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/vec_map-405e6da89d886d17/dep-lib-vec_map"}}],"rustflags":[],"metadata":4537707490384367989,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/version_check-00bf083b16e77ed7/dep-lib-version_check b/target/release/.fingerprint/version_check-00bf083b16e77ed7/dep-lib-version_check deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/version_check-00bf083b16e77ed7/dep-lib-version_check and /dev/null differ diff --git a/target/release/.fingerprint/version_check-00bf083b16e77ed7/lib-version_check b/target/release/.fingerprint/version_check-00bf083b16e77ed7/lib-version_check deleted file mode 100644 index fe7c338..0000000 --- a/target/release/.fingerprint/version_check-00bf083b16e77ed7/lib-version_check +++ /dev/null @@ -1 +0,0 @@ -96334499a36b9623 \ No newline at end of file diff --git a/target/release/.fingerprint/version_check-00bf083b16e77ed7/lib-version_check.json b/target/release/.fingerprint/version_check-00bf083b16e77ed7/lib-version_check.json deleted file mode 100644 index dec85f1..0000000 --- a/target/release/.fingerprint/version_check-00bf083b16e77ed7/lib-version_check.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":6489677892763750542,"profile":10803726696109476711,"path":7472609759332889140,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/version_check-00bf083b16e77ed7/dep-lib-version_check"}}],"rustflags":[],"metadata":14847206692933921638,"config":0} \ No newline at end of file diff --git a/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/dep-lib-yaml-rust b/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/dep-lib-yaml-rust deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/dep-lib-yaml-rust and /dev/null differ diff --git a/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/lib-yaml-rust b/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/lib-yaml-rust deleted file mode 100644 index 19d0687..0000000 --- a/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/lib-yaml-rust +++ /dev/null @@ -1 +0,0 @@ -a605a14da34c14b4 \ No newline at end of file diff --git a/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/lib-yaml-rust.json b/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/lib-yaml-rust.json deleted file mode 100644 index 8ee0521..0000000 --- a/target/release/.fingerprint/yaml-rust-131c78e154e4a52e/lib-yaml-rust.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":66165631676752942,"features":"[]","target":1995623602021067618,"profile":4339006351771724982,"path":3008426900708204766,"deps":[[17964526342116417683,"linked_hash_map",false,2756437146093116009]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/yaml-rust-131c78e154e4a52e/dep-lib-yaml-rust"}}],"rustflags":[],"metadata":3685397162052115131,"config":0} \ No newline at end of file diff --git a/target/release/build/bitflags-06e1e7e4c677a486/build-script-build b/target/release/build/bitflags-06e1e7e4c677a486/build-script-build deleted file mode 100644 index e289ee1..0000000 Binary files a/target/release/build/bitflags-06e1e7e4c677a486/build-script-build and /dev/null differ diff --git a/target/release/build/bitflags-06e1e7e4c677a486/build_script_build-06e1e7e4c677a486 b/target/release/build/bitflags-06e1e7e4c677a486/build_script_build-06e1e7e4c677a486 deleted file mode 100644 index e289ee1..0000000 Binary files a/target/release/build/bitflags-06e1e7e4c677a486/build_script_build-06e1e7e4c677a486 and /dev/null differ diff --git a/target/release/build/bitflags-06e1e7e4c677a486/build_script_build-06e1e7e4c677a486.d b/target/release/build/bitflags-06e1e7e4c677a486/build_script_build-06e1e7e4c677a486.d deleted file mode 100644 index 5bdf175..0000000 --- a/target/release/build/bitflags-06e1e7e4c677a486/build_script_build-06e1e7e4c677a486.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/bitflags-06e1e7e4c677a486/build_script_build-06e1e7e4c677a486: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/bitflags-06e1e7e4c677a486/build_script_build-06e1e7e4c677a486.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/build.rs: diff --git a/target/release/build/bitflags-3d65992b427b8247/output b/target/release/build/bitflags-3d65992b427b8247/output deleted file mode 100644 index f9ccc6f..0000000 --- a/target/release/build/bitflags-3d65992b427b8247/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rustc-cfg=bitflags_const_fn diff --git a/target/release/build/bitflags-3d65992b427b8247/root-output b/target/release/build/bitflags-3d65992b427b8247/root-output deleted file mode 100644 index d02fd87..0000000 --- a/target/release/build/bitflags-3d65992b427b8247/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/bitflags-3d65992b427b8247/out \ No newline at end of file diff --git a/target/release/build/indexmap-5767be7128df3faa/build-script-build b/target/release/build/indexmap-5767be7128df3faa/build-script-build deleted file mode 100644 index 2d1a89b..0000000 Binary files a/target/release/build/indexmap-5767be7128df3faa/build-script-build and /dev/null differ diff --git a/target/release/build/indexmap-5767be7128df3faa/build_script_build-5767be7128df3faa b/target/release/build/indexmap-5767be7128df3faa/build_script_build-5767be7128df3faa deleted file mode 100644 index 2d1a89b..0000000 Binary files a/target/release/build/indexmap-5767be7128df3faa/build_script_build-5767be7128df3faa and /dev/null differ diff --git a/target/release/build/indexmap-5767be7128df3faa/build_script_build-5767be7128df3faa.d b/target/release/build/indexmap-5767be7128df3faa/build_script_build-5767be7128df3faa.d deleted file mode 100644 index 67f39bb..0000000 --- a/target/release/build/indexmap-5767be7128df3faa/build_script_build-5767be7128df3faa.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/indexmap-5767be7128df3faa/build_script_build-5767be7128df3faa: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/indexmap-5767be7128df3faa/build_script_build-5767be7128df3faa.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/build.rs: diff --git a/target/release/build/indexmap-62d8e03465cfcdd6/out/probe0.ll b/target/release/build/indexmap-62d8e03465cfcdd6/out/probe0.ll deleted file mode 100644 index 31681b1..0000000 --- a/target/release/build/indexmap-62d8e03465cfcdd6/out/probe0.ll +++ /dev/null @@ -1,9 +0,0 @@ -; ModuleID = 'probe0.3a1fbbbh-cgu.0' -source_filename = "probe0.3a1fbbbh-cgu.0" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-unknown-linux-gnu" - -!llvm.module.flags = !{!0, !1} - -!0 = !{i32 7, !"PIC Level", i32 2} -!1 = !{i32 2, !"RtLibUseGOT", i32 1} diff --git a/target/release/build/indexmap-62d8e03465cfcdd6/out/probe1.ll b/target/release/build/indexmap-62d8e03465cfcdd6/out/probe1.ll deleted file mode 100644 index 5715d6b..0000000 --- a/target/release/build/indexmap-62d8e03465cfcdd6/out/probe1.ll +++ /dev/null @@ -1,9 +0,0 @@ -; ModuleID = 'probe1.3a1fbbbh-cgu.0' -source_filename = "probe1.3a1fbbbh-cgu.0" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-unknown-linux-gnu" - -!llvm.module.flags = !{!0, !1} - -!0 = !{i32 7, !"PIC Level", i32 2} -!1 = !{i32 2, !"RtLibUseGOT", i32 1} diff --git a/target/release/build/indexmap-62d8e03465cfcdd6/root-output b/target/release/build/indexmap-62d8e03465cfcdd6/root-output deleted file mode 100644 index dcda67e..0000000 --- a/target/release/build/indexmap-62d8e03465cfcdd6/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/indexmap-62d8e03465cfcdd6/out \ No newline at end of file diff --git a/target/release/build/lexical-core-3f76a674b0092248/build_script_build-3f76a674b0092248.d b/target/release/build/lexical-core-3f76a674b0092248/build_script_build-3f76a674b0092248.d deleted file mode 100644 index 88f3ca9..0000000 --- a/target/release/build/lexical-core-3f76a674b0092248/build_script_build-3f76a674b0092248.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/lexical-core-3f76a674b0092248/build_script_build-3f76a674b0092248: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/lexical-core-3f76a674b0092248/build_script_build-3f76a674b0092248.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/build.rs: diff --git a/target/release/build/lexical-core-ee4e63713e85d41d/invoked.timestamp b/target/release/build/lexical-core-ee4e63713e85d41d/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/lexical-core-ee4e63713e85d41d/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/lexical-core-ee4e63713e85d41d/output b/target/release/build/lexical-core-ee4e63713e85d41d/output deleted file mode 100644 index 8f47a74..0000000 --- a/target/release/build/lexical-core-ee4e63713e85d41d/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rustc-cfg=limb_width_64 diff --git a/target/release/build/lexical-core-ee4e63713e85d41d/root-output b/target/release/build/lexical-core-ee4e63713e85d41d/root-output deleted file mode 100644 index 29bdb3f..0000000 --- a/target/release/build/lexical-core-ee4e63713e85d41d/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/lexical-core-ee4e63713e85d41d/out \ No newline at end of file diff --git a/target/release/build/libc-7cc2f7bb1680d496/build-script-build b/target/release/build/libc-7cc2f7bb1680d496/build-script-build deleted file mode 100644 index 57f02e9..0000000 Binary files a/target/release/build/libc-7cc2f7bb1680d496/build-script-build and /dev/null differ diff --git a/target/release/build/libc-7cc2f7bb1680d496/build_script_build-7cc2f7bb1680d496 b/target/release/build/libc-7cc2f7bb1680d496/build_script_build-7cc2f7bb1680d496 deleted file mode 100644 index 57f02e9..0000000 Binary files a/target/release/build/libc-7cc2f7bb1680d496/build_script_build-7cc2f7bb1680d496 and /dev/null differ diff --git a/target/release/build/libc-7cc2f7bb1680d496/build_script_build-7cc2f7bb1680d496.d b/target/release/build/libc-7cc2f7bb1680d496/build_script_build-7cc2f7bb1680d496.d deleted file mode 100644 index 00fd7da..0000000 --- a/target/release/build/libc-7cc2f7bb1680d496/build_script_build-7cc2f7bb1680d496.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/libc-7cc2f7bb1680d496/build_script_build-7cc2f7bb1680d496: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/libc-7cc2f7bb1680d496/build_script_build-7cc2f7bb1680d496.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.71/build.rs: diff --git a/target/release/build/libc-fc4010789fc5747b/invoked.timestamp b/target/release/build/libc-fc4010789fc5747b/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/libc-fc4010789fc5747b/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/libc-fc4010789fc5747b/root-output b/target/release/build/libc-fc4010789fc5747b/root-output deleted file mode 100644 index be72d8b..0000000 --- a/target/release/build/libc-fc4010789fc5747b/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/libc-fc4010789fc5747b/out \ No newline at end of file diff --git a/target/release/build/memchr-223fd63faab3ed19/invoked.timestamp b/target/release/build/memchr-223fd63faab3ed19/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/memchr-223fd63faab3ed19/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/memchr-223fd63faab3ed19/output b/target/release/build/memchr-223fd63faab3ed19/output deleted file mode 100644 index 520482b..0000000 --- a/target/release/build/memchr-223fd63faab3ed19/output +++ /dev/null @@ -1,4 +0,0 @@ -cargo:rustc-cfg=memchr_runtime_simd -cargo:rustc-cfg=memchr_runtime_sse2 -cargo:rustc-cfg=memchr_runtime_sse42 -cargo:rustc-cfg=memchr_runtime_avx diff --git a/target/release/build/memchr-223fd63faab3ed19/root-output b/target/release/build/memchr-223fd63faab3ed19/root-output deleted file mode 100644 index 7f4857f..0000000 --- a/target/release/build/memchr-223fd63faab3ed19/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/memchr-223fd63faab3ed19/out \ No newline at end of file diff --git a/target/release/build/memchr-3df2d04dc68b3e7b/build_script_build-3df2d04dc68b3e7b.d b/target/release/build/memchr-3df2d04dc68b3e7b/build_script_build-3df2d04dc68b3e7b.d deleted file mode 100644 index 8d6e22d..0000000 --- a/target/release/build/memchr-3df2d04dc68b3e7b/build_script_build-3df2d04dc68b3e7b.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/memchr-3df2d04dc68b3e7b/build_script_build-3df2d04dc68b3e7b: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/memchr-3df2d04dc68b3e7b/build_script_build-3df2d04dc68b3e7b.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/build.rs: diff --git a/target/release/build/nom-6a4948a25f93776d/build-script-build b/target/release/build/nom-6a4948a25f93776d/build-script-build deleted file mode 100644 index 801b5f9..0000000 Binary files a/target/release/build/nom-6a4948a25f93776d/build-script-build and /dev/null differ diff --git a/target/release/build/nom-6a4948a25f93776d/build_script_build-6a4948a25f93776d b/target/release/build/nom-6a4948a25f93776d/build_script_build-6a4948a25f93776d deleted file mode 100644 index 801b5f9..0000000 Binary files a/target/release/build/nom-6a4948a25f93776d/build_script_build-6a4948a25f93776d and /dev/null differ diff --git a/target/release/build/nom-6a4948a25f93776d/build_script_build-6a4948a25f93776d.d b/target/release/build/nom-6a4948a25f93776d/build_script_build-6a4948a25f93776d.d deleted file mode 100644 index d16ebeb..0000000 --- a/target/release/build/nom-6a4948a25f93776d/build_script_build-6a4948a25f93776d.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/nom-6a4948a25f93776d/build_script_build-6a4948a25f93776d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/nom-6a4948a25f93776d/build_script_build-6a4948a25f93776d.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/build.rs: diff --git a/target/release/build/nom-dfe7653f1f37a5b6/invoked.timestamp b/target/release/build/nom-dfe7653f1f37a5b6/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/nom-dfe7653f1f37a5b6/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/nom-dfe7653f1f37a5b6/output b/target/release/build/nom-dfe7653f1f37a5b6/output deleted file mode 100644 index 204c339..0000000 --- a/target/release/build/nom-dfe7653f1f37a5b6/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rustc-cfg=stable_i128 diff --git a/target/release/build/num-traits-5f03bd98ed02d543/invoked.timestamp b/target/release/build/num-traits-5f03bd98ed02d543/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/num-traits-5f03bd98ed02d543/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/num-traits-5f03bd98ed02d543/out/probe0.ll b/target/release/build/num-traits-5f03bd98ed02d543/out/probe0.ll deleted file mode 100644 index 31681b1..0000000 --- a/target/release/build/num-traits-5f03bd98ed02d543/out/probe0.ll +++ /dev/null @@ -1,9 +0,0 @@ -; ModuleID = 'probe0.3a1fbbbh-cgu.0' -source_filename = "probe0.3a1fbbbh-cgu.0" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-unknown-linux-gnu" - -!llvm.module.flags = !{!0, !1} - -!0 = !{i32 7, !"PIC Level", i32 2} -!1 = !{i32 2, !"RtLibUseGOT", i32 1} diff --git a/target/release/build/num-traits-5f03bd98ed02d543/out/probe1.ll b/target/release/build/num-traits-5f03bd98ed02d543/out/probe1.ll deleted file mode 100644 index 5715d6b..0000000 --- a/target/release/build/num-traits-5f03bd98ed02d543/out/probe1.ll +++ /dev/null @@ -1,9 +0,0 @@ -; ModuleID = 'probe1.3a1fbbbh-cgu.0' -source_filename = "probe1.3a1fbbbh-cgu.0" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-unknown-linux-gnu" - -!llvm.module.flags = !{!0, !1} - -!0 = !{i32 7, !"PIC Level", i32 2} -!1 = !{i32 2, !"RtLibUseGOT", i32 1} diff --git a/target/release/build/num-traits-5f03bd98ed02d543/out/probe2.ll b/target/release/build/num-traits-5f03bd98ed02d543/out/probe2.ll deleted file mode 100644 index 5f25d3c..0000000 --- a/target/release/build/num-traits-5f03bd98ed02d543/out/probe2.ll +++ /dev/null @@ -1,50 +0,0 @@ -; ModuleID = 'probe2.3a1fbbbh-cgu.0' -source_filename = "probe2.3a1fbbbh-cgu.0" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-unknown-linux-gnu" - -; core::f64::::to_int_unchecked -; Function Attrs: inlinehint nonlazybind uwtable -define i32 @"_ZN4core3f6421_$LT$impl$u20$f64$GT$16to_int_unchecked17h2e35e88a394ba4a4E"(double %self) unnamed_addr #0 { -start: -; call >::to_int_unchecked - %0 = call i32 @"_ZN65_$LT$f64$u20$as$u20$core..convert..num..FloatToInt$LT$i32$GT$$GT$16to_int_unchecked17hf88cb56b2b4bac31E"(double %self) - br label %bb1 - -bb1: ; preds = %start - ret i32 %0 -} - -; >::to_int_unchecked -; Function Attrs: inlinehint nonlazybind uwtable -define internal i32 @"_ZN65_$LT$f64$u20$as$u20$core..convert..num..FloatToInt$LT$i32$GT$$GT$16to_int_unchecked17hf88cb56b2b4bac31E"(double %self) unnamed_addr #0 { -start: - %0 = alloca i32, align 4 - %1 = fptosi double %self to i32 - store i32 %1, i32* %0, align 4 - %2 = load i32, i32* %0, align 4 - br label %bb1 - -bb1: ; preds = %start - ret i32 %2 -} - -; probe2::probe -; Function Attrs: nonlazybind uwtable -define void @_ZN6probe25probe17h7140347c9b94c32aE() unnamed_addr #1 { -start: -; call core::f64::::to_int_unchecked - %_1 = call i32 @"_ZN4core3f6421_$LT$impl$u20$f64$GT$16to_int_unchecked17h2e35e88a394ba4a4E"(double 1.000000e+00) - br label %bb1 - -bb1: ; preds = %start - ret void -} - -attributes #0 = { inlinehint nonlazybind uwtable "probe-stack"="__rust_probestack" "target-cpu"="x86-64" } -attributes #1 = { nonlazybind uwtable "probe-stack"="__rust_probestack" "target-cpu"="x86-64" } - -!llvm.module.flags = !{!0, !1} - -!0 = !{i32 7, !"PIC Level", i32 2} -!1 = !{i32 2, !"RtLibUseGOT", i32 1} diff --git a/target/release/build/num-traits-5f03bd98ed02d543/output b/target/release/build/num-traits-5f03bd98ed02d543/output deleted file mode 100644 index 7d4e690..0000000 --- a/target/release/build/num-traits-5f03bd98ed02d543/output +++ /dev/null @@ -1,3 +0,0 @@ -cargo:rustc-cfg=has_i128 -cargo:rustc-cfg=has_to_int_unchecked -cargo:rerun-if-changed=build.rs diff --git a/target/release/build/num-traits-5f03bd98ed02d543/root-output b/target/release/build/num-traits-5f03bd98ed02d543/root-output deleted file mode 100644 index 5e062d6..0000000 --- a/target/release/build/num-traits-5f03bd98ed02d543/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/num-traits-5f03bd98ed02d543/out \ No newline at end of file diff --git a/target/release/build/num-traits-9e08d90901b368a8/build-script-build b/target/release/build/num-traits-9e08d90901b368a8/build-script-build deleted file mode 100644 index 8e24129..0000000 Binary files a/target/release/build/num-traits-9e08d90901b368a8/build-script-build and /dev/null differ diff --git a/target/release/build/num-traits-9e08d90901b368a8/build_script_build-9e08d90901b368a8 b/target/release/build/num-traits-9e08d90901b368a8/build_script_build-9e08d90901b368a8 deleted file mode 100644 index 8e24129..0000000 Binary files a/target/release/build/num-traits-9e08d90901b368a8/build_script_build-9e08d90901b368a8 and /dev/null differ diff --git a/target/release/build/num-traits-9e08d90901b368a8/build_script_build-9e08d90901b368a8.d b/target/release/build/num-traits-9e08d90901b368a8/build_script_build-9e08d90901b368a8.d deleted file mode 100644 index eb7d563..0000000 --- a/target/release/build/num-traits-9e08d90901b368a8/build_script_build-9e08d90901b368a8.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/num-traits-9e08d90901b368a8/build_script_build-9e08d90901b368a8: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/num-traits-9e08d90901b368a8/build_script_build-9e08d90901b368a8.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/build.rs: diff --git a/target/release/build/proc-macro-error-18051370c307f317/build-script-build b/target/release/build/proc-macro-error-18051370c307f317/build-script-build deleted file mode 100644 index f0febe0..0000000 Binary files a/target/release/build/proc-macro-error-18051370c307f317/build-script-build and /dev/null differ diff --git a/target/release/build/proc-macro-error-18051370c307f317/build_script_build-18051370c307f317 b/target/release/build/proc-macro-error-18051370c307f317/build_script_build-18051370c307f317 deleted file mode 100644 index f0febe0..0000000 Binary files a/target/release/build/proc-macro-error-18051370c307f317/build_script_build-18051370c307f317 and /dev/null differ diff --git a/target/release/build/proc-macro-error-18051370c307f317/build_script_build-18051370c307f317.d b/target/release/build/proc-macro-error-18051370c307f317/build_script_build-18051370c307f317.d deleted file mode 100644 index 73be0d0..0000000 --- a/target/release/build/proc-macro-error-18051370c307f317/build_script_build-18051370c307f317.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/proc-macro-error-18051370c307f317/build_script_build-18051370c307f317: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/proc-macro-error-18051370c307f317/build_script_build-18051370c307f317.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/build.rs: diff --git a/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build-script-build b/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build-script-build deleted file mode 100644 index 1fc7152..0000000 Binary files a/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build-script-build and /dev/null differ diff --git a/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build_script_build-3130667d9f1d3ba9 b/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build_script_build-3130667d9f1d3ba9 deleted file mode 100644 index 1fc7152..0000000 Binary files a/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build_script_build-3130667d9f1d3ba9 and /dev/null differ diff --git a/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build_script_build-3130667d9f1d3ba9.d b/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build_script_build-3130667d9f1d3ba9.d deleted file mode 100644 index 21c1db4..0000000 --- a/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build_script_build-3130667d9f1d3ba9.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build_script_build-3130667d9f1d3ba9: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/proc-macro-error-attr-3130667d9f1d3ba9/build_script_build-3130667d9f1d3ba9.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/build.rs: diff --git a/target/release/build/proc-macro-error-attr-eb9cae79429bba7f/invoked.timestamp b/target/release/build/proc-macro-error-attr-eb9cae79429bba7f/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/proc-macro-error-attr-eb9cae79429bba7f/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/proc-macro-error-attr-eb9cae79429bba7f/root-output b/target/release/build/proc-macro-error-attr-eb9cae79429bba7f/root-output deleted file mode 100644 index fa0bc5e..0000000 --- a/target/release/build/proc-macro-error-attr-eb9cae79429bba7f/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/proc-macro-error-attr-eb9cae79429bba7f/out \ No newline at end of file diff --git a/target/release/build/proc-macro-error-c851645ce98833f9/invoked.timestamp b/target/release/build/proc-macro-error-c851645ce98833f9/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/proc-macro-error-c851645ce98833f9/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/proc-macro-error-c851645ce98833f9/output b/target/release/build/proc-macro-error-c851645ce98833f9/output deleted file mode 100644 index df4624d..0000000 --- a/target/release/build/proc-macro-error-c851645ce98833f9/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rustc-cfg=use_fallback diff --git a/target/release/build/proc-macro-error-c851645ce98833f9/root-output b/target/release/build/proc-macro-error-c851645ce98833f9/root-output deleted file mode 100644 index 7c152d5..0000000 --- a/target/release/build/proc-macro-error-c851645ce98833f9/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/proc-macro-error-c851645ce98833f9/out \ No newline at end of file diff --git a/target/release/build/proc-macro2-136efe43110f6f45/build-script-build b/target/release/build/proc-macro2-136efe43110f6f45/build-script-build deleted file mode 100644 index 00db5b5..0000000 Binary files a/target/release/build/proc-macro2-136efe43110f6f45/build-script-build and /dev/null differ diff --git a/target/release/build/proc-macro2-136efe43110f6f45/build_script_build-136efe43110f6f45 b/target/release/build/proc-macro2-136efe43110f6f45/build_script_build-136efe43110f6f45 deleted file mode 100644 index 00db5b5..0000000 Binary files a/target/release/build/proc-macro2-136efe43110f6f45/build_script_build-136efe43110f6f45 and /dev/null differ diff --git a/target/release/build/proc-macro2-136efe43110f6f45/build_script_build-136efe43110f6f45.d b/target/release/build/proc-macro2-136efe43110f6f45/build_script_build-136efe43110f6f45.d deleted file mode 100644 index 1c072ce..0000000 --- a/target/release/build/proc-macro2-136efe43110f6f45/build_script_build-136efe43110f6f45.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/proc-macro2-136efe43110f6f45/build_script_build-136efe43110f6f45: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/proc-macro2-136efe43110f6f45/build_script_build-136efe43110f6f45.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/build.rs: diff --git a/target/release/build/proc-macro2-611c77acf2619bc7/invoked.timestamp b/target/release/build/proc-macro2-611c77acf2619bc7/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/proc-macro2-611c77acf2619bc7/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/proc-macro2-611c77acf2619bc7/output b/target/release/build/proc-macro2-611c77acf2619bc7/output deleted file mode 100644 index eee8612..0000000 --- a/target/release/build/proc-macro2-611c77acf2619bc7/output +++ /dev/null @@ -1,4 +0,0 @@ -cargo:rerun-if-changed=build.rs -cargo:rustc-cfg=hygiene -cargo:rustc-cfg=use_proc_macro -cargo:rustc-cfg=wrap_proc_macro diff --git a/target/release/build/proc-macro2-611c77acf2619bc7/root-output b/target/release/build/proc-macro2-611c77acf2619bc7/root-output deleted file mode 100644 index 9d5f833..0000000 --- a/target/release/build/proc-macro2-611c77acf2619bc7/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/proc-macro2-611c77acf2619bc7/out \ No newline at end of file diff --git a/target/release/build/ryu-e4213df9ff9d99ae/invoked.timestamp b/target/release/build/ryu-e4213df9ff9d99ae/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/ryu-e4213df9ff9d99ae/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/ryu-e4213df9ff9d99ae/output b/target/release/build/ryu-e4213df9ff9d99ae/output deleted file mode 100644 index e16d9c6..0000000 --- a/target/release/build/ryu-e4213df9ff9d99ae/output +++ /dev/null @@ -1,2 +0,0 @@ -cargo:rustc-cfg=integer128 -cargo:rustc-cfg=maybe_uninit diff --git a/target/release/build/ryu-f51c263ba48db9fd/build-script-build b/target/release/build/ryu-f51c263ba48db9fd/build-script-build deleted file mode 100644 index a2d2ae0..0000000 Binary files a/target/release/build/ryu-f51c263ba48db9fd/build-script-build and /dev/null differ diff --git a/target/release/build/ryu-f51c263ba48db9fd/build_script_build-f51c263ba48db9fd b/target/release/build/ryu-f51c263ba48db9fd/build_script_build-f51c263ba48db9fd deleted file mode 100644 index a2d2ae0..0000000 Binary files a/target/release/build/ryu-f51c263ba48db9fd/build_script_build-f51c263ba48db9fd and /dev/null differ diff --git a/target/release/build/ryu-f51c263ba48db9fd/build_script_build-f51c263ba48db9fd.d b/target/release/build/ryu-f51c263ba48db9fd/build_script_build-f51c263ba48db9fd.d deleted file mode 100644 index 74520c9..0000000 --- a/target/release/build/ryu-f51c263ba48db9fd/build_script_build-f51c263ba48db9fd.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/ryu-f51c263ba48db9fd/build_script_build-f51c263ba48db9fd: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/ryu-f51c263ba48db9fd/build_script_build-f51c263ba48db9fd.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/build.rs: diff --git a/target/release/build/serde-0e25c32ea550a82a/invoked.timestamp b/target/release/build/serde-0e25c32ea550a82a/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/serde-0e25c32ea550a82a/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/serde-0e25c32ea550a82a/output b/target/release/build/serde-0e25c32ea550a82a/output deleted file mode 100644 index bf40d03..0000000 --- a/target/release/build/serde-0e25c32ea550a82a/output +++ /dev/null @@ -1,13 +0,0 @@ -cargo:rustc-cfg=ops_bound -cargo:rustc-cfg=core_reverse -cargo:rustc-cfg=de_boxed_c_str -cargo:rustc-cfg=de_boxed_path -cargo:rustc-cfg=de_rc_dst -cargo:rustc-cfg=core_duration -cargo:rustc-cfg=integer128 -cargo:rustc-cfg=range_inclusive -cargo:rustc-cfg=num_nonzero -cargo:rustc-cfg=core_try_from -cargo:rustc-cfg=num_nonzero_signed -cargo:rustc-cfg=std_atomic64 -cargo:rustc-cfg=std_atomic diff --git a/target/release/build/serde-8257586245dd2ff1/build-script-build b/target/release/build/serde-8257586245dd2ff1/build-script-build deleted file mode 100644 index 34bfe22..0000000 Binary files a/target/release/build/serde-8257586245dd2ff1/build-script-build and /dev/null differ diff --git a/target/release/build/serde-8257586245dd2ff1/build_script_build-8257586245dd2ff1 b/target/release/build/serde-8257586245dd2ff1/build_script_build-8257586245dd2ff1 deleted file mode 100644 index 34bfe22..0000000 Binary files a/target/release/build/serde-8257586245dd2ff1/build_script_build-8257586245dd2ff1 and /dev/null differ diff --git a/target/release/build/serde-8257586245dd2ff1/build_script_build-8257586245dd2ff1.d b/target/release/build/serde-8257586245dd2ff1/build_script_build-8257586245dd2ff1.d deleted file mode 100644 index 7a9ba24..0000000 --- a/target/release/build/serde-8257586245dd2ff1/build_script_build-8257586245dd2ff1.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/serde-8257586245dd2ff1/build_script_build-8257586245dd2ff1: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/serde-8257586245dd2ff1/build_script_build-8257586245dd2ff1.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/build.rs: diff --git a/target/release/build/serde_json-a1676b9f242b82a0/invoked.timestamp b/target/release/build/serde_json-a1676b9f242b82a0/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/serde_json-a1676b9f242b82a0/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/serde_json-a1676b9f242b82a0/output b/target/release/build/serde_json-a1676b9f242b82a0/output deleted file mode 100644 index 8f47a74..0000000 --- a/target/release/build/serde_json-a1676b9f242b82a0/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rustc-cfg=limb_width_64 diff --git a/target/release/build/serde_json-a1676b9f242b82a0/root-output b/target/release/build/serde_json-a1676b9f242b82a0/root-output deleted file mode 100644 index f0898a7..0000000 --- a/target/release/build/serde_json-a1676b9f242b82a0/root-output +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/serde_json-a1676b9f242b82a0/out \ No newline at end of file diff --git a/target/release/build/serde_json-cebdf3d160825960/build_script_build-cebdf3d160825960.d b/target/release/build/serde_json-cebdf3d160825960/build_script_build-cebdf3d160825960.d deleted file mode 100644 index fe5cd43..0000000 --- a/target/release/build/serde_json-cebdf3d160825960/build_script_build-cebdf3d160825960.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/serde_json-cebdf3d160825960/build_script_build-cebdf3d160825960: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/serde_json-cebdf3d160825960/build_script_build-cebdf3d160825960.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/build.rs: diff --git a/target/release/build/syn-b38a1eecdb910211/build-script-build b/target/release/build/syn-b38a1eecdb910211/build-script-build deleted file mode 100644 index a75f4a7..0000000 Binary files a/target/release/build/syn-b38a1eecdb910211/build-script-build and /dev/null differ diff --git a/target/release/build/syn-b38a1eecdb910211/build_script_build-b38a1eecdb910211 b/target/release/build/syn-b38a1eecdb910211/build_script_build-b38a1eecdb910211 deleted file mode 100644 index a75f4a7..0000000 Binary files a/target/release/build/syn-b38a1eecdb910211/build_script_build-b38a1eecdb910211 and /dev/null differ diff --git a/target/release/build/syn-b38a1eecdb910211/build_script_build-b38a1eecdb910211.d b/target/release/build/syn-b38a1eecdb910211/build_script_build-b38a1eecdb910211.d deleted file mode 100644 index 6da4d39..0000000 --- a/target/release/build/syn-b38a1eecdb910211/build_script_build-b38a1eecdb910211.d +++ /dev/null @@ -1,5 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/syn-b38a1eecdb910211/build_script_build-b38a1eecdb910211: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/build.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/build/syn-b38a1eecdb910211/build_script_build-b38a1eecdb910211.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/build.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/build.rs: diff --git a/target/release/build/syn-d4a547281a1b9843/invoked.timestamp b/target/release/build/syn-d4a547281a1b9843/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/target/release/build/syn-d4a547281a1b9843/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/syn-d4a547281a1b9843/output b/target/release/build/syn-d4a547281a1b9843/output deleted file mode 100644 index 614b948..0000000 --- a/target/release/build/syn-d4a547281a1b9843/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rustc-cfg=syn_disable_nightly_tests diff --git a/target/release/deps/aho_corasick-177f3c0cce8d214a.d b/target/release/deps/aho_corasick-177f3c0cce8d214a.d deleted file mode 100644 index f31373a..0000000 --- a/target/release/deps/aho_corasick-177f3c0cce8d214a.d +++ /dev/null @@ -1,25 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/aho_corasick-177f3c0cce8d214a.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/ahocorasick.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/automaton.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/buffer.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/byte_frequencies.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/classes.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/dfa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/nfa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/pattern.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/rabinkarp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/compile.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/runtime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/vector.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/prefilter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/state_id.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libaho_corasick-177f3c0cce8d214a.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/ahocorasick.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/automaton.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/buffer.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/byte_frequencies.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/classes.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/dfa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/nfa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/pattern.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/rabinkarp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/compile.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/runtime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/vector.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/prefilter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/state_id.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/aho_corasick-177f3c0cce8d214a.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/ahocorasick.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/automaton.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/buffer.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/byte_frequencies.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/classes.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/dfa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/nfa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/pattern.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/rabinkarp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/compile.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/runtime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/vector.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/prefilter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/state_id.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/ahocorasick.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/automaton.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/buffer.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/byte_frequencies.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/classes.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/dfa.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/nfa.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/api.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/pattern.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/rabinkarp.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/compile.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/teddy/runtime.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/packed/vector.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/prefilter.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/state_id.rs: diff --git a/target/release/deps/arrayvec-9d1a3d3cd04b847f.d b/target/release/deps/arrayvec-9d1a3d3cd04b847f.d deleted file mode 100644 index ef04be6..0000000 --- a/target/release/deps/arrayvec-9d1a3d3cd04b847f.d +++ /dev/null @@ -1,12 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/arrayvec-9d1a3d3cd04b847f.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/maybe_uninit.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/array.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/array_string.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/char.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/errors.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libarrayvec-9d1a3d3cd04b847f.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/maybe_uninit.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/array.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/array_string.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/char.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/errors.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/arrayvec-9d1a3d3cd04b847f.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/maybe_uninit.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/array.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/array_string.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/char.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/errors.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/maybe_uninit.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/array.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/array_string.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/char.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/errors.rs: diff --git a/target/release/deps/autocfg-062c362b0e560242.d b/target/release/deps/autocfg-062c362b0e560242.d deleted file mode 100644 index deb1359..0000000 --- a/target/release/deps/autocfg-062c362b0e560242.d +++ /dev/null @@ -1,9 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/autocfg-062c362b0e560242.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/version.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libautocfg-062c362b0e560242.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/version.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/autocfg-062c362b0e560242.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/version.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.0/src/version.rs: diff --git a/target/release/deps/bitflags-ff7f5482904c4de3.d b/target/release/deps/bitflags-ff7f5482904c4de3.d deleted file mode 100644 index 8946051..0000000 --- a/target/release/deps/bitflags-ff7f5482904c4de3.d +++ /dev/null @@ -1,7 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/bitflags-ff7f5482904c4de3.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libbitflags-ff7f5482904c4de3.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/bitflags-ff7f5482904c4de3.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/src/lib.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/src/lib.rs: diff --git a/target/release/deps/cfg_if-0f89700f04afbfc5.d b/target/release/deps/cfg_if-0f89700f04afbfc5.d deleted file mode 100644 index 5ca91c8..0000000 --- a/target/release/deps/cfg_if-0f89700f04afbfc5.d +++ /dev/null @@ -1,7 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/cfg_if-0f89700f04afbfc5.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libcfg_if-0f89700f04afbfc5.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/cfg_if-0f89700f04afbfc5.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs: diff --git a/target/release/deps/clap-438ee09a7ce7db16.d b/target/release/deps/clap-438ee09a7ce7db16.d deleted file mode 100644 index 67e6512..0000000 --- a/target/release/deps/clap-438ee09a7ce7db16.d +++ /dev/null @@ -1,38 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/clap-438ee09a7ce7db16.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/derive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/value_hint.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg_group.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/usage_parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/mkeymap.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/help.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/usage.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/fmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/errors.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/suggestions.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/arg_matcher.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/arg_matches.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/matched_arg.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/validator.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/argstr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/fnv.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/graph.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/id.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libclap-438ee09a7ce7db16.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/derive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/value_hint.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg_group.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/usage_parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/mkeymap.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/help.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/usage.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/fmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/errors.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/suggestions.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/arg_matcher.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/arg_matches.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/matched_arg.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/validator.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/argstr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/fnv.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/graph.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/id.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/clap-438ee09a7ce7db16.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/derive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/settings.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/value_hint.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg_group.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/usage_parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/mkeymap.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/help.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/usage.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/fmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/errors.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/suggestions.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/arg_matcher.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/arg_matches.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/matched_arg.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/validator.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/argstr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/fnv.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/graph.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/id.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/derive.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/app/settings.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/settings.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg/value_hint.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/arg_group.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/build/usage_parser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/mkeymap.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/help.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/usage.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/output/fmt.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/errors.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/features/suggestions.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/arg_matcher.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/arg_matches.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/matches/matched_arg.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/parser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/parse/validator.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/argstr.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/fnv.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/graph.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-3.0.0-beta.2/src/util/id.rs: diff --git a/target/release/deps/clap_derive-2f0d8a47419feb4d.d b/target/release/deps/clap_derive-2f0d8a47419feb4d.d deleted file mode 100644 index 12e438c..0000000 --- a/target/release/deps/clap_derive-2f0d8a47419feb4d.d +++ /dev/null @@ -1,18 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libclap_derive-2f0d8a47419feb4d.so: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/attrs.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/arg_enum.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/clap.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/from_arg_matches.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/into_app.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/subcommand.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/dummies.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/doc_comments.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/spanned.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/ty.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/clap_derive-2f0d8a47419feb4d.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/attrs.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/arg_enum.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/clap.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/from_arg_matches.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/into_app.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/subcommand.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/dummies.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/doc_comments.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/spanned.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/ty.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/attrs.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/arg_enum.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/clap.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/from_arg_matches.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/into_app.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/derives/subcommand.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/dummies.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/parse.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/doc_comments.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/spanned.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_derive-3.0.0-beta.2/src/utils/ty.rs: diff --git a/target/release/deps/config-920fae297337ba9d.d b/target/release/deps/config-920fae297337ba9d.d deleted file mode 100644 index 6de92f4..0000000 --- a/target/release/deps/config-920fae297337ba9d.d +++ /dev/null @@ -1,26 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/config-920fae297337ba9d.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/config.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/env.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/toml.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/json.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/yaml.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/hjson.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/ini.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/file.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/string.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/path/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/path/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/source.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/value.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libconfig-920fae297337ba9d.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/config.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/env.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/toml.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/json.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/yaml.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/hjson.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/ini.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/file.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/string.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/path/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/path/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/source.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/value.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/config-920fae297337ba9d.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/config.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/env.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/toml.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/json.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/yaml.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/hjson.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/ini.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/file.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/string.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/path/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/path/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/source.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/value.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/config.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/de.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/env.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/toml.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/json.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/yaml.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/hjson.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/format/ini.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/file.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/file/source/string.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/path/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/path/parser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/ser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/source.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/config-0.10.1/src/value.rs: diff --git a/target/release/deps/heck-1d4454dbf81ee16c.d b/target/release/deps/heck-1d4454dbf81ee16c.d deleted file mode 100644 index 8c3ac44..0000000 --- a/target/release/deps/heck-1d4454dbf81ee16c.d +++ /dev/null @@ -1,13 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/heck-1d4454dbf81ee16c.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/camel.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/kebab.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/mixed.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/shouty_snake.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/snake.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/title.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libheck-1d4454dbf81ee16c.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/camel.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/kebab.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/mixed.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/shouty_snake.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/snake.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/title.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/heck-1d4454dbf81ee16c.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/camel.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/kebab.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/mixed.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/shouty_snake.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/snake.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/title.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/camel.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/kebab.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/mixed.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/shouty_snake.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/snake.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/title.rs: diff --git a/target/release/deps/igloo-e77f2c6e61152a46 b/target/release/deps/igloo-e77f2c6e61152a46 deleted file mode 100644 index a5ef3bc..0000000 Binary files a/target/release/deps/igloo-e77f2c6e61152a46 and /dev/null differ diff --git a/target/release/deps/igloo-e77f2c6e61152a46.d b/target/release/deps/igloo-e77f2c6e61152a46.d deleted file mode 100644 index 0ea402b..0000000 --- a/target/release/deps/igloo-e77f2c6e61152a46.d +++ /dev/null @@ -1,12 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/igloo-e77f2c6e61152a46: src/main.rs src/igloo.rs src/igloo_action.rs src/igloo_prj.rs src/igloo_manifest.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/igloo-e77f2c6e61152a46.d: src/main.rs src/igloo.rs src/igloo_action.rs src/igloo_prj.rs src/igloo_manifest.rs - -src/main.rs: -src/igloo.rs: -src/igloo_action.rs: -src/igloo_prj.rs: -src/igloo_manifest.rs: - -# env-dep:CARGO_PKG_DESCRIPTION=Igloo is a package and project manager. It is used for bare metal (for now only bare metal) embedded systems. In the embedded world, there is a big gap between how one would write code for embedded systems between manufacturers. As of today, 7/2/20, there is really no easy way to go about writing code for any embedded system from scratch. Most of the time, you need to download headers from some unknown location, figure out your hardware interface, find the proper toolchain, etc. This forces embedded developers and engineers to spend a lot of unnecessary time on DevOps and less time on firmware engineering. Igloo aims to solve this problem. Igloo is in its early stages of development. -# env-dep:CARGO_PKG_VERSION=0.1.0 diff --git a/target/release/deps/indexmap-d71227ee9669aacc.d b/target/release/deps/indexmap-d71227ee9669aacc.d deleted file mode 100644 index 60e74db..0000000 --- a/target/release/deps/indexmap-d71227ee9669aacc.d +++ /dev/null @@ -1,13 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/indexmap-d71227ee9669aacc.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/equivalent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/mutable_keys.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/util.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/map.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/set.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libindexmap-d71227ee9669aacc.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/equivalent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/mutable_keys.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/util.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/map.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/set.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/indexmap-d71227ee9669aacc.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/equivalent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/mutable_keys.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/util.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/map.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/set.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/equivalent.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/mutable_keys.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/util.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/map.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.4.0/src/set.rs: diff --git a/target/release/deps/ini-26103a64a58d7c80.d b/target/release/deps/ini-26103a64a58d7c80.d deleted file mode 100644 index e2aa93d..0000000 --- a/target/release/deps/ini-26103a64a58d7c80.d +++ /dev/null @@ -1,8 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/ini-26103a64a58d7c80.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/src/ini.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libini-26103a64a58d7c80.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/src/ini.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/ini-26103a64a58d7c80.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/src/ini.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/src/ini.rs: diff --git a/target/release/deps/itoa-449af1c7bd37f226.d b/target/release/deps/itoa-449af1c7bd37f226.d deleted file mode 100644 index b67dfba..0000000 --- a/target/release/deps/itoa-449af1c7bd37f226.d +++ /dev/null @@ -1,7 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/itoa-449af1c7bd37f226.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libitoa-449af1c7bd37f226.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/itoa-449af1c7bd37f226.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/src/lib.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/src/lib.rs: diff --git a/target/release/deps/lazy_static-a2d4e9568ec6e14c.d b/target/release/deps/lazy_static-a2d4e9568ec6e14c.d deleted file mode 100644 index db225b2..0000000 --- a/target/release/deps/lazy_static-a2d4e9568ec6e14c.d +++ /dev/null @@ -1,8 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/lazy_static-a2d4e9568ec6e14c.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/liblazy_static-a2d4e9568ec6e14c.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/lazy_static-a2d4e9568ec6e14c.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs: diff --git a/target/release/deps/lexical_core-6da36bab7df24c03.d b/target/release/deps/lexical_core-6da36bab7df24c03.d deleted file mode 100644 index a8c49fb..0000000 --- a/target/release/deps/lexical_core-6da36bab7df24c03.d +++ /dev/null @@ -1,71 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/lexical_core-6da36bab7df24c03.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/assert.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/index.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/perftools.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/traits.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/algorithm.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/cast.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/config.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/consume.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/div128.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/format.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/iterator.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/mask.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/num.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/primitive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/pow.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/result.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/rounding.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/sign.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/table.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/exponent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/trim.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/validate.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/interface.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/standard.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/correct.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/shared.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/exponent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/generic.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/mantissa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/convert.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/mantissa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/rounding.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/shift.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/decimal.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/sequence.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/alias.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bignum.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached_float80.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached_float160.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/errors.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/large_powers.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/small_powers.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/large_powers_64.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/small_powers_64.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/liblexical_core-6da36bab7df24c03.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/assert.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/index.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/perftools.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/traits.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/algorithm.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/cast.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/config.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/consume.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/div128.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/format.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/iterator.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/mask.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/num.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/primitive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/pow.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/result.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/rounding.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/sign.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/table.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/exponent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/trim.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/validate.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/interface.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/standard.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/correct.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/shared.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/exponent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/generic.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/mantissa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/convert.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/mantissa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/rounding.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/shift.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/decimal.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/sequence.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/alias.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bignum.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached_float80.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached_float160.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/errors.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/large_powers.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/small_powers.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/large_powers_64.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/small_powers_64.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/lexical_core-6da36bab7df24c03.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/assert.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/index.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/perftools.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/traits.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/algorithm.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/cast.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/config.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/consume.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/div128.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/format.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/iterator.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/mask.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/num.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/primitive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/pow.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/result.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/rounding.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/sign.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/table.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/exponent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/trim.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/validate.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/interface.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/standard.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/correct.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/shared.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/exponent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/generic.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/mantissa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/convert.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/mantissa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/rounding.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/shift.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/decimal.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/api.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/sequence.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/alias.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bignum.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached_float80.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached_float160.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/errors.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/large_powers.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/small_powers.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/large_powers_64.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/small_powers_64.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/assert.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/index.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/perftools.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/traits.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/algorithm.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/cast.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/config.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/consume.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/div128.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/format.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/iterator.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/mask.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/num.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/primitive.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/pow.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/result.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/rounding.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/sign.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/table.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/exponent.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/trim.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/validate.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/interface.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/standard.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/correct.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/api.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/shared.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/api.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/exponent.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/generic.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atoi/mantissa.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/convert.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/mantissa.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/rounding.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/shift.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/api.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/decimal.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/itoa/api.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/util/sequence.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/alias.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bignum.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached_float80.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/cached_float160.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/errors.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/large_powers.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/small_powers.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/large_powers_64.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/small_powers_64.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs: diff --git a/target/release/deps/libaho_corasick-177f3c0cce8d214a.rlib b/target/release/deps/libaho_corasick-177f3c0cce8d214a.rlib deleted file mode 100644 index 39803ac..0000000 Binary files a/target/release/deps/libaho_corasick-177f3c0cce8d214a.rlib and /dev/null differ diff --git a/target/release/deps/libaho_corasick-177f3c0cce8d214a.rmeta b/target/release/deps/libaho_corasick-177f3c0cce8d214a.rmeta deleted file mode 100644 index 5bc72c8..0000000 Binary files a/target/release/deps/libaho_corasick-177f3c0cce8d214a.rmeta and /dev/null differ diff --git a/target/release/deps/libarrayvec-9d1a3d3cd04b847f.rlib b/target/release/deps/libarrayvec-9d1a3d3cd04b847f.rlib deleted file mode 100644 index 3d0bd1c..0000000 Binary files a/target/release/deps/libarrayvec-9d1a3d3cd04b847f.rlib and /dev/null differ diff --git a/target/release/deps/libarrayvec-9d1a3d3cd04b847f.rmeta b/target/release/deps/libarrayvec-9d1a3d3cd04b847f.rmeta deleted file mode 100644 index 9198979..0000000 Binary files a/target/release/deps/libarrayvec-9d1a3d3cd04b847f.rmeta and /dev/null differ diff --git a/target/release/deps/libatty-762b111f8be85311.rlib b/target/release/deps/libatty-762b111f8be85311.rlib deleted file mode 100644 index a8147fb..0000000 Binary files a/target/release/deps/libatty-762b111f8be85311.rlib and /dev/null differ diff --git a/target/release/deps/libatty-762b111f8be85311.rmeta b/target/release/deps/libatty-762b111f8be85311.rmeta deleted file mode 100644 index c2066cc..0000000 Binary files a/target/release/deps/libatty-762b111f8be85311.rmeta and /dev/null differ diff --git a/target/release/deps/libautocfg-062c362b0e560242.rlib b/target/release/deps/libautocfg-062c362b0e560242.rlib deleted file mode 100644 index d7dfd74..0000000 Binary files a/target/release/deps/libautocfg-062c362b0e560242.rlib and /dev/null differ diff --git a/target/release/deps/libautocfg-062c362b0e560242.rmeta b/target/release/deps/libautocfg-062c362b0e560242.rmeta deleted file mode 100644 index ee1679f..0000000 Binary files a/target/release/deps/libautocfg-062c362b0e560242.rmeta and /dev/null differ diff --git a/target/release/deps/libbitflags-ff7f5482904c4de3.rlib b/target/release/deps/libbitflags-ff7f5482904c4de3.rlib deleted file mode 100644 index 8b5485e..0000000 Binary files a/target/release/deps/libbitflags-ff7f5482904c4de3.rlib and /dev/null differ diff --git a/target/release/deps/libbitflags-ff7f5482904c4de3.rmeta b/target/release/deps/libbitflags-ff7f5482904c4de3.rmeta deleted file mode 100644 index e0af717..0000000 Binary files a/target/release/deps/libbitflags-ff7f5482904c4de3.rmeta and /dev/null differ diff --git a/target/release/deps/libcfg_if-0f89700f04afbfc5.rlib b/target/release/deps/libcfg_if-0f89700f04afbfc5.rlib deleted file mode 100644 index ec9b36f..0000000 Binary files a/target/release/deps/libcfg_if-0f89700f04afbfc5.rlib and /dev/null differ diff --git a/target/release/deps/libcfg_if-0f89700f04afbfc5.rmeta b/target/release/deps/libcfg_if-0f89700f04afbfc5.rmeta deleted file mode 100644 index 8db6103..0000000 Binary files a/target/release/deps/libcfg_if-0f89700f04afbfc5.rmeta and /dev/null differ diff --git a/target/release/deps/libclap-438ee09a7ce7db16.rlib b/target/release/deps/libclap-438ee09a7ce7db16.rlib deleted file mode 100644 index 6b5cb96..0000000 Binary files a/target/release/deps/libclap-438ee09a7ce7db16.rlib and /dev/null differ diff --git a/target/release/deps/libclap-438ee09a7ce7db16.rmeta b/target/release/deps/libclap-438ee09a7ce7db16.rmeta deleted file mode 100644 index 54d7f90..0000000 Binary files a/target/release/deps/libclap-438ee09a7ce7db16.rmeta and /dev/null differ diff --git a/target/release/deps/libconfig-920fae297337ba9d.rlib b/target/release/deps/libconfig-920fae297337ba9d.rlib deleted file mode 100644 index 4d2511b..0000000 Binary files a/target/release/deps/libconfig-920fae297337ba9d.rlib and /dev/null differ diff --git a/target/release/deps/libconfig-920fae297337ba9d.rmeta b/target/release/deps/libconfig-920fae297337ba9d.rmeta deleted file mode 100644 index 7370fff..0000000 Binary files a/target/release/deps/libconfig-920fae297337ba9d.rmeta and /dev/null differ diff --git a/target/release/deps/libheck-1d4454dbf81ee16c.rlib b/target/release/deps/libheck-1d4454dbf81ee16c.rlib deleted file mode 100644 index 4c4a14d..0000000 Binary files a/target/release/deps/libheck-1d4454dbf81ee16c.rlib and /dev/null differ diff --git a/target/release/deps/libheck-1d4454dbf81ee16c.rmeta b/target/release/deps/libheck-1d4454dbf81ee16c.rmeta deleted file mode 100644 index 362b124..0000000 Binary files a/target/release/deps/libheck-1d4454dbf81ee16c.rmeta and /dev/null differ diff --git a/target/release/deps/libindexmap-d71227ee9669aacc.rlib b/target/release/deps/libindexmap-d71227ee9669aacc.rlib deleted file mode 100644 index 0baf5af..0000000 Binary files a/target/release/deps/libindexmap-d71227ee9669aacc.rlib and /dev/null differ diff --git a/target/release/deps/libindexmap-d71227ee9669aacc.rmeta b/target/release/deps/libindexmap-d71227ee9669aacc.rmeta deleted file mode 100644 index 949a3a1..0000000 Binary files a/target/release/deps/libindexmap-d71227ee9669aacc.rmeta and /dev/null differ diff --git a/target/release/deps/libini-26103a64a58d7c80.rlib b/target/release/deps/libini-26103a64a58d7c80.rlib deleted file mode 100644 index 12195d8..0000000 Binary files a/target/release/deps/libini-26103a64a58d7c80.rlib and /dev/null differ diff --git a/target/release/deps/libini-26103a64a58d7c80.rmeta b/target/release/deps/libini-26103a64a58d7c80.rmeta deleted file mode 100644 index 5284a63..0000000 Binary files a/target/release/deps/libini-26103a64a58d7c80.rmeta and /dev/null differ diff --git a/target/release/deps/libitoa-449af1c7bd37f226.rlib b/target/release/deps/libitoa-449af1c7bd37f226.rlib deleted file mode 100644 index 1aaaea3..0000000 Binary files a/target/release/deps/libitoa-449af1c7bd37f226.rlib and /dev/null differ diff --git a/target/release/deps/libitoa-449af1c7bd37f226.rmeta b/target/release/deps/libitoa-449af1c7bd37f226.rmeta deleted file mode 100644 index 2f7a561..0000000 Binary files a/target/release/deps/libitoa-449af1c7bd37f226.rmeta and /dev/null differ diff --git a/target/release/deps/liblazy_static-a2d4e9568ec6e14c.rlib b/target/release/deps/liblazy_static-a2d4e9568ec6e14c.rlib deleted file mode 100644 index 244b301..0000000 Binary files a/target/release/deps/liblazy_static-a2d4e9568ec6e14c.rlib and /dev/null differ diff --git a/target/release/deps/liblazy_static-a2d4e9568ec6e14c.rmeta b/target/release/deps/liblazy_static-a2d4e9568ec6e14c.rmeta deleted file mode 100644 index 23c6f80..0000000 Binary files a/target/release/deps/liblazy_static-a2d4e9568ec6e14c.rmeta and /dev/null differ diff --git a/target/release/deps/liblexical_core-6da36bab7df24c03.rlib b/target/release/deps/liblexical_core-6da36bab7df24c03.rlib deleted file mode 100644 index cf1fd34..0000000 Binary files a/target/release/deps/liblexical_core-6da36bab7df24c03.rlib and /dev/null differ diff --git a/target/release/deps/liblexical_core-6da36bab7df24c03.rmeta b/target/release/deps/liblexical_core-6da36bab7df24c03.rmeta deleted file mode 100644 index 31880a1..0000000 Binary files a/target/release/deps/liblexical_core-6da36bab7df24c03.rmeta and /dev/null differ diff --git a/target/release/deps/liblibc-ff0f9ac8c11c1dbe.rlib b/target/release/deps/liblibc-ff0f9ac8c11c1dbe.rlib deleted file mode 100644 index d43540c..0000000 Binary files a/target/release/deps/liblibc-ff0f9ac8c11c1dbe.rlib and /dev/null differ diff --git a/target/release/deps/liblibc-ff0f9ac8c11c1dbe.rmeta b/target/release/deps/liblibc-ff0f9ac8c11c1dbe.rmeta deleted file mode 100644 index a5b0e6b..0000000 Binary files a/target/release/deps/liblibc-ff0f9ac8c11c1dbe.rmeta and /dev/null differ diff --git a/target/release/deps/liblinked_hash_map-0a449f63e0711052.rlib b/target/release/deps/liblinked_hash_map-0a449f63e0711052.rlib deleted file mode 100644 index eceee2a..0000000 Binary files a/target/release/deps/liblinked_hash_map-0a449f63e0711052.rlib and /dev/null differ diff --git a/target/release/deps/liblinked_hash_map-0a449f63e0711052.rmeta b/target/release/deps/liblinked_hash_map-0a449f63e0711052.rmeta deleted file mode 100644 index fa47d1e..0000000 Binary files a/target/release/deps/liblinked_hash_map-0a449f63e0711052.rmeta and /dev/null differ diff --git a/target/release/deps/liblinked_hash_map-e27fd89619f3f825.rlib b/target/release/deps/liblinked_hash_map-e27fd89619f3f825.rlib deleted file mode 100644 index d651833..0000000 Binary files a/target/release/deps/liblinked_hash_map-e27fd89619f3f825.rlib and /dev/null differ diff --git a/target/release/deps/liblinked_hash_map-e27fd89619f3f825.rmeta b/target/release/deps/liblinked_hash_map-e27fd89619f3f825.rmeta deleted file mode 100644 index 29cc098..0000000 Binary files a/target/release/deps/liblinked_hash_map-e27fd89619f3f825.rmeta and /dev/null differ diff --git a/target/release/deps/libmemchr-c44b65623915fcea.rlib b/target/release/deps/libmemchr-c44b65623915fcea.rlib deleted file mode 100644 index 8e6a108..0000000 Binary files a/target/release/deps/libmemchr-c44b65623915fcea.rlib and /dev/null differ diff --git a/target/release/deps/libmemchr-c44b65623915fcea.rmeta b/target/release/deps/libmemchr-c44b65623915fcea.rmeta deleted file mode 100644 index b50748a..0000000 Binary files a/target/release/deps/libmemchr-c44b65623915fcea.rmeta and /dev/null differ diff --git a/target/release/deps/libnom-cc13468d7cb1a4db.rlib b/target/release/deps/libnom-cc13468d7cb1a4db.rlib deleted file mode 100644 index e52b90b..0000000 Binary files a/target/release/deps/libnom-cc13468d7cb1a4db.rlib and /dev/null differ diff --git a/target/release/deps/libnom-cc13468d7cb1a4db.rmeta b/target/release/deps/libnom-cc13468d7cb1a4db.rmeta deleted file mode 100644 index aaac36e..0000000 Binary files a/target/release/deps/libnom-cc13468d7cb1a4db.rmeta and /dev/null differ diff --git a/target/release/deps/libnum_traits-43b7376d32138d38.rlib b/target/release/deps/libnum_traits-43b7376d32138d38.rlib deleted file mode 100644 index 0468f37..0000000 Binary files a/target/release/deps/libnum_traits-43b7376d32138d38.rlib and /dev/null differ diff --git a/target/release/deps/libnum_traits-43b7376d32138d38.rmeta b/target/release/deps/libnum_traits-43b7376d32138d38.rmeta deleted file mode 100644 index b901217..0000000 Binary files a/target/release/deps/libnum_traits-43b7376d32138d38.rmeta and /dev/null differ diff --git a/target/release/deps/libnum_traits-4ccb8bfa6d994b5d.rlib b/target/release/deps/libnum_traits-4ccb8bfa6d994b5d.rlib deleted file mode 100644 index 3d6e42f..0000000 Binary files a/target/release/deps/libnum_traits-4ccb8bfa6d994b5d.rlib and /dev/null differ diff --git a/target/release/deps/libnum_traits-4ccb8bfa6d994b5d.rmeta b/target/release/deps/libnum_traits-4ccb8bfa6d994b5d.rmeta deleted file mode 100644 index 994ae69..0000000 Binary files a/target/release/deps/libnum_traits-4ccb8bfa6d994b5d.rmeta and /dev/null differ diff --git a/target/release/deps/libos_str_bytes-2a7f72fe01f967fa.rlib b/target/release/deps/libos_str_bytes-2a7f72fe01f967fa.rlib deleted file mode 100644 index 42a9db6..0000000 Binary files a/target/release/deps/libos_str_bytes-2a7f72fe01f967fa.rlib and /dev/null differ diff --git a/target/release/deps/libos_str_bytes-2a7f72fe01f967fa.rmeta b/target/release/deps/libos_str_bytes-2a7f72fe01f967fa.rmeta deleted file mode 100644 index c87129f..0000000 Binary files a/target/release/deps/libos_str_bytes-2a7f72fe01f967fa.rmeta and /dev/null differ diff --git a/target/release/deps/libproc_macro2-8c3af62c3486e469.rlib b/target/release/deps/libproc_macro2-8c3af62c3486e469.rlib deleted file mode 100644 index eaab428..0000000 Binary files a/target/release/deps/libproc_macro2-8c3af62c3486e469.rlib and /dev/null differ diff --git a/target/release/deps/libproc_macro2-8c3af62c3486e469.rmeta b/target/release/deps/libproc_macro2-8c3af62c3486e469.rmeta deleted file mode 100644 index 6499b1f..0000000 Binary files a/target/release/deps/libproc_macro2-8c3af62c3486e469.rmeta and /dev/null differ diff --git a/target/release/deps/libproc_macro_error-f4addad7fafcd892.rlib b/target/release/deps/libproc_macro_error-f4addad7fafcd892.rlib deleted file mode 100644 index 6fdb5cc..0000000 Binary files a/target/release/deps/libproc_macro_error-f4addad7fafcd892.rlib and /dev/null differ diff --git a/target/release/deps/libproc_macro_error-f4addad7fafcd892.rmeta b/target/release/deps/libproc_macro_error-f4addad7fafcd892.rmeta deleted file mode 100644 index 6ce5205..0000000 Binary files a/target/release/deps/libproc_macro_error-f4addad7fafcd892.rmeta and /dev/null differ diff --git a/target/release/deps/libproc_macro_error_attr-7bb310d49ba63a47.so b/target/release/deps/libproc_macro_error_attr-7bb310d49ba63a47.so deleted file mode 100644 index 15f52f3..0000000 Binary files a/target/release/deps/libproc_macro_error_attr-7bb310d49ba63a47.so and /dev/null differ diff --git a/target/release/deps/libquote-eafe4baa7c1bf060.rlib b/target/release/deps/libquote-eafe4baa7c1bf060.rlib deleted file mode 100644 index dee1ccb..0000000 Binary files a/target/release/deps/libquote-eafe4baa7c1bf060.rlib and /dev/null differ diff --git a/target/release/deps/libquote-eafe4baa7c1bf060.rmeta b/target/release/deps/libquote-eafe4baa7c1bf060.rmeta deleted file mode 100644 index 9f25c7b..0000000 Binary files a/target/release/deps/libquote-eafe4baa7c1bf060.rmeta and /dev/null differ diff --git a/target/release/deps/libregex-a01d99d1d1a9d2f8.rlib b/target/release/deps/libregex-a01d99d1d1a9d2f8.rlib deleted file mode 100644 index c9dfb9b..0000000 Binary files a/target/release/deps/libregex-a01d99d1d1a9d2f8.rlib and /dev/null differ diff --git a/target/release/deps/libregex-a01d99d1d1a9d2f8.rmeta b/target/release/deps/libregex-a01d99d1d1a9d2f8.rmeta deleted file mode 100644 index 5708c50..0000000 Binary files a/target/release/deps/libregex-a01d99d1d1a9d2f8.rmeta and /dev/null differ diff --git a/target/release/deps/libregex_syntax-50d37af1de76b871.rlib b/target/release/deps/libregex_syntax-50d37af1de76b871.rlib deleted file mode 100644 index 3f982ce..0000000 Binary files a/target/release/deps/libregex_syntax-50d37af1de76b871.rlib and /dev/null differ diff --git a/target/release/deps/libregex_syntax-50d37af1de76b871.rmeta b/target/release/deps/libregex_syntax-50d37af1de76b871.rmeta deleted file mode 100644 index 8c6f7e6..0000000 Binary files a/target/release/deps/libregex_syntax-50d37af1de76b871.rmeta and /dev/null differ diff --git a/target/release/deps/libryu-947076e03a8bfb36.rlib b/target/release/deps/libryu-947076e03a8bfb36.rlib deleted file mode 100644 index 797c442..0000000 Binary files a/target/release/deps/libryu-947076e03a8bfb36.rlib and /dev/null differ diff --git a/target/release/deps/libryu-947076e03a8bfb36.rmeta b/target/release/deps/libryu-947076e03a8bfb36.rmeta deleted file mode 100644 index d1f32db..0000000 Binary files a/target/release/deps/libryu-947076e03a8bfb36.rmeta and /dev/null differ diff --git a/target/release/deps/libserde-7291fec13c047b66.rlib b/target/release/deps/libserde-7291fec13c047b66.rlib deleted file mode 100644 index 67a0388..0000000 Binary files a/target/release/deps/libserde-7291fec13c047b66.rlib and /dev/null differ diff --git a/target/release/deps/libserde-7291fec13c047b66.rmeta b/target/release/deps/libserde-7291fec13c047b66.rmeta deleted file mode 100644 index a23a8d0..0000000 Binary files a/target/release/deps/libserde-7291fec13c047b66.rmeta and /dev/null differ diff --git a/target/release/deps/libserde-fcd1a60d64ffce08.rlib b/target/release/deps/libserde-fcd1a60d64ffce08.rlib deleted file mode 100644 index 2c7a5ab..0000000 Binary files a/target/release/deps/libserde-fcd1a60d64ffce08.rlib and /dev/null differ diff --git a/target/release/deps/libserde-fcd1a60d64ffce08.rmeta b/target/release/deps/libserde-fcd1a60d64ffce08.rmeta deleted file mode 100644 index 2d7f3fa..0000000 Binary files a/target/release/deps/libserde-fcd1a60d64ffce08.rmeta and /dev/null differ diff --git a/target/release/deps/libserde_hjson-b28b7df10cde90cf.rlib b/target/release/deps/libserde_hjson-b28b7df10cde90cf.rlib deleted file mode 100644 index 5f96914..0000000 Binary files a/target/release/deps/libserde_hjson-b28b7df10cde90cf.rlib and /dev/null differ diff --git a/target/release/deps/libserde_hjson-b28b7df10cde90cf.rmeta b/target/release/deps/libserde_hjson-b28b7df10cde90cf.rmeta deleted file mode 100644 index ba3f500..0000000 Binary files a/target/release/deps/libserde_hjson-b28b7df10cde90cf.rmeta and /dev/null differ diff --git a/target/release/deps/libserde_json-735629205996a197.rlib b/target/release/deps/libserde_json-735629205996a197.rlib deleted file mode 100644 index 443fc9b..0000000 Binary files a/target/release/deps/libserde_json-735629205996a197.rlib and /dev/null differ diff --git a/target/release/deps/libserde_json-735629205996a197.rmeta b/target/release/deps/libserde_json-735629205996a197.rmeta deleted file mode 100644 index 5cdc5a8..0000000 Binary files a/target/release/deps/libserde_json-735629205996a197.rmeta and /dev/null differ diff --git a/target/release/deps/libserde_test-6e2b08d7187046f1.rlib b/target/release/deps/libserde_test-6e2b08d7187046f1.rlib deleted file mode 100644 index 7843618..0000000 Binary files a/target/release/deps/libserde_test-6e2b08d7187046f1.rlib and /dev/null differ diff --git a/target/release/deps/libserde_test-6e2b08d7187046f1.rmeta b/target/release/deps/libserde_test-6e2b08d7187046f1.rmeta deleted file mode 100644 index 9f1fafa..0000000 Binary files a/target/release/deps/libserde_test-6e2b08d7187046f1.rmeta and /dev/null differ diff --git a/target/release/deps/libstatic_assertions-8642131a574c757d.rlib b/target/release/deps/libstatic_assertions-8642131a574c757d.rlib deleted file mode 100644 index d8e22fd..0000000 Binary files a/target/release/deps/libstatic_assertions-8642131a574c757d.rlib and /dev/null differ diff --git a/target/release/deps/libstatic_assertions-8642131a574c757d.rmeta b/target/release/deps/libstatic_assertions-8642131a574c757d.rmeta deleted file mode 100644 index b758951..0000000 Binary files a/target/release/deps/libstatic_assertions-8642131a574c757d.rmeta and /dev/null differ diff --git a/target/release/deps/libstrsim-26c573e37cfcad18.rlib b/target/release/deps/libstrsim-26c573e37cfcad18.rlib deleted file mode 100644 index 4b14b3a..0000000 Binary files a/target/release/deps/libstrsim-26c573e37cfcad18.rlib and /dev/null differ diff --git a/target/release/deps/libstrsim-26c573e37cfcad18.rmeta b/target/release/deps/libstrsim-26c573e37cfcad18.rmeta deleted file mode 100644 index 793708c..0000000 Binary files a/target/release/deps/libstrsim-26c573e37cfcad18.rmeta and /dev/null differ diff --git a/target/release/deps/libsyn-12af7e02de91c4e7.rlib b/target/release/deps/libsyn-12af7e02de91c4e7.rlib deleted file mode 100644 index 6d3afa3..0000000 Binary files a/target/release/deps/libsyn-12af7e02de91c4e7.rlib and /dev/null differ diff --git a/target/release/deps/libsyn-12af7e02de91c4e7.rmeta b/target/release/deps/libsyn-12af7e02de91c4e7.rmeta deleted file mode 100644 index e36a685..0000000 Binary files a/target/release/deps/libsyn-12af7e02de91c4e7.rmeta and /dev/null differ diff --git a/target/release/deps/libtermcolor-9965aade8290d241.rlib b/target/release/deps/libtermcolor-9965aade8290d241.rlib deleted file mode 100644 index a2066e4..0000000 Binary files a/target/release/deps/libtermcolor-9965aade8290d241.rlib and /dev/null differ diff --git a/target/release/deps/libtermcolor-9965aade8290d241.rmeta b/target/release/deps/libtermcolor-9965aade8290d241.rmeta deleted file mode 100644 index ac64cc2..0000000 Binary files a/target/release/deps/libtermcolor-9965aade8290d241.rmeta and /dev/null differ diff --git a/target/release/deps/libtextwrap-ba51af69fce8bf78.rlib b/target/release/deps/libtextwrap-ba51af69fce8bf78.rlib deleted file mode 100644 index bdd3355..0000000 Binary files a/target/release/deps/libtextwrap-ba51af69fce8bf78.rlib and /dev/null differ diff --git a/target/release/deps/libtextwrap-ba51af69fce8bf78.rmeta b/target/release/deps/libtextwrap-ba51af69fce8bf78.rmeta deleted file mode 100644 index 1671e18..0000000 Binary files a/target/release/deps/libtextwrap-ba51af69fce8bf78.rmeta and /dev/null differ diff --git a/target/release/deps/libthread_local-9a90c0c2354361f2.rlib b/target/release/deps/libthread_local-9a90c0c2354361f2.rlib deleted file mode 100644 index 8ae03c7..0000000 Binary files a/target/release/deps/libthread_local-9a90c0c2354361f2.rlib and /dev/null differ diff --git a/target/release/deps/libthread_local-9a90c0c2354361f2.rmeta b/target/release/deps/libthread_local-9a90c0c2354361f2.rmeta deleted file mode 100644 index 7ced5a0..0000000 Binary files a/target/release/deps/libthread_local-9a90c0c2354361f2.rmeta and /dev/null differ diff --git a/target/release/deps/libtoml-468b7cd3ec291e4d.rlib b/target/release/deps/libtoml-468b7cd3ec291e4d.rlib deleted file mode 100644 index 866b26c..0000000 Binary files a/target/release/deps/libtoml-468b7cd3ec291e4d.rlib and /dev/null differ diff --git a/target/release/deps/libtoml-468b7cd3ec291e4d.rmeta b/target/release/deps/libtoml-468b7cd3ec291e4d.rmeta deleted file mode 100644 index c328fad..0000000 Binary files a/target/release/deps/libtoml-468b7cd3ec291e4d.rmeta and /dev/null differ diff --git a/target/release/deps/libunicode_segmentation-f5863c0811ff9590.rlib b/target/release/deps/libunicode_segmentation-f5863c0811ff9590.rlib deleted file mode 100644 index 219629b..0000000 Binary files a/target/release/deps/libunicode_segmentation-f5863c0811ff9590.rlib and /dev/null differ diff --git a/target/release/deps/libunicode_segmentation-f5863c0811ff9590.rmeta b/target/release/deps/libunicode_segmentation-f5863c0811ff9590.rmeta deleted file mode 100644 index 67b7575..0000000 Binary files a/target/release/deps/libunicode_segmentation-f5863c0811ff9590.rmeta and /dev/null differ diff --git a/target/release/deps/libunicode_width-5f4356788e200ee8.rlib b/target/release/deps/libunicode_width-5f4356788e200ee8.rlib deleted file mode 100644 index b18ce49..0000000 Binary files a/target/release/deps/libunicode_width-5f4356788e200ee8.rlib and /dev/null differ diff --git a/target/release/deps/libunicode_width-5f4356788e200ee8.rmeta b/target/release/deps/libunicode_width-5f4356788e200ee8.rmeta deleted file mode 100644 index 4e23f6c..0000000 Binary files a/target/release/deps/libunicode_width-5f4356788e200ee8.rmeta and /dev/null differ diff --git a/target/release/deps/libunicode_xid-8663f59690402b5f.rlib b/target/release/deps/libunicode_xid-8663f59690402b5f.rlib deleted file mode 100644 index afa405f..0000000 Binary files a/target/release/deps/libunicode_xid-8663f59690402b5f.rlib and /dev/null differ diff --git a/target/release/deps/libunicode_xid-8663f59690402b5f.rmeta b/target/release/deps/libunicode_xid-8663f59690402b5f.rmeta deleted file mode 100644 index 59385dd..0000000 Binary files a/target/release/deps/libunicode_xid-8663f59690402b5f.rmeta and /dev/null differ diff --git a/target/release/deps/libvec_map-405e6da89d886d17.rlib b/target/release/deps/libvec_map-405e6da89d886d17.rlib deleted file mode 100644 index 714e2cd..0000000 Binary files a/target/release/deps/libvec_map-405e6da89d886d17.rlib and /dev/null differ diff --git a/target/release/deps/libvec_map-405e6da89d886d17.rmeta b/target/release/deps/libvec_map-405e6da89d886d17.rmeta deleted file mode 100644 index 4beaacb..0000000 Binary files a/target/release/deps/libvec_map-405e6da89d886d17.rmeta and /dev/null differ diff --git a/target/release/deps/libversion_check-00bf083b16e77ed7.rlib b/target/release/deps/libversion_check-00bf083b16e77ed7.rlib deleted file mode 100644 index 6d4bc6c..0000000 Binary files a/target/release/deps/libversion_check-00bf083b16e77ed7.rlib and /dev/null differ diff --git a/target/release/deps/libversion_check-00bf083b16e77ed7.rmeta b/target/release/deps/libversion_check-00bf083b16e77ed7.rmeta deleted file mode 100644 index 33eac46..0000000 Binary files a/target/release/deps/libversion_check-00bf083b16e77ed7.rmeta and /dev/null differ diff --git a/target/release/deps/libyaml_rust-131c78e154e4a52e.rlib b/target/release/deps/libyaml_rust-131c78e154e4a52e.rlib deleted file mode 100644 index d03f45d..0000000 Binary files a/target/release/deps/libyaml_rust-131c78e154e4a52e.rlib and /dev/null differ diff --git a/target/release/deps/libyaml_rust-131c78e154e4a52e.rmeta b/target/release/deps/libyaml_rust-131c78e154e4a52e.rmeta deleted file mode 100644 index 6cfe123..0000000 Binary files a/target/release/deps/libyaml_rust-131c78e154e4a52e.rmeta and /dev/null differ diff --git a/target/release/deps/linked_hash_map-0a449f63e0711052.d b/target/release/deps/linked_hash_map-0a449f63e0711052.d deleted file mode 100644 index 997b972..0000000 --- a/target/release/deps/linked_hash_map-0a449f63e0711052.d +++ /dev/null @@ -1,8 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/linked_hash_map-0a449f63e0711052.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.3.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.3.0/src/serde.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/liblinked_hash_map-0a449f63e0711052.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.3.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.3.0/src/serde.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/linked_hash_map-0a449f63e0711052.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.3.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.3.0/src/serde.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.3.0/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.3.0/src/serde.rs: diff --git a/target/release/deps/linked_hash_map-e27fd89619f3f825.d b/target/release/deps/linked_hash_map-e27fd89619f3f825.d deleted file mode 100644 index 87b8548..0000000 --- a/target/release/deps/linked_hash_map-e27fd89619f3f825.d +++ /dev/null @@ -1,7 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/linked_hash_map-e27fd89619f3f825.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/liblinked_hash_map-e27fd89619f3f825.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/linked_hash_map-e27fd89619f3f825.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/src/lib.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/src/lib.rs: diff --git a/target/release/deps/memchr-c44b65623915fcea.d b/target/release/deps/memchr-c44b65623915fcea.d deleted file mode 100644 index 0ceb6a5..0000000 --- a/target/release/deps/memchr-c44b65623915fcea.d +++ /dev/null @@ -1,13 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/memchr-c44b65623915fcea.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/fallback.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/iter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/naive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/avx.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/sse2.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libmemchr-c44b65623915fcea.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/fallback.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/iter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/naive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/avx.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/sse2.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/memchr-c44b65623915fcea.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/fallback.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/iter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/naive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/avx.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/sse2.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/fallback.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/iter.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/naive.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/avx.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/x86/sse2.rs: diff --git a/target/release/deps/nom-cc13468d7cb1a4db.d b/target/release/deps/nom-cc13468d7cb1a4db.d deleted file mode 100644 index aa6012f..0000000 --- a/target/release/deps/nom-cc13468d7cb1a4db.d +++ /dev/null @@ -1,38 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/nom-cc13468d7cb1a4db.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/util.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/internal.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/traits.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/combinator/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/combinator/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/branch/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/branch/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/sequence/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/sequence/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/multi/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/multi/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/methods.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/complete.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/complete.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/complete.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/whitespace.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/str.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/complete.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libnom-cc13468d7cb1a4db.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/util.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/internal.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/traits.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/combinator/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/combinator/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/branch/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/branch/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/sequence/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/sequence/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/multi/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/multi/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/methods.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/complete.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/complete.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/complete.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/whitespace.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/str.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/complete.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/nom-cc13468d7cb1a4db.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/util.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/internal.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/traits.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/combinator/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/combinator/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/branch/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/branch/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/sequence/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/sequence/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/multi/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/multi/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/methods.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/complete.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/complete.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/complete.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/whitespace.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/str.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/streaming.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/complete.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/util.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/internal.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/traits.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/combinator/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/combinator/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/branch/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/branch/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/sequence/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/sequence/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/multi/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/multi/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/methods.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/streaming.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bytes/complete.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/streaming.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/complete.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/streaming.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/character/complete.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/whitespace.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/str.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/streaming.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/number/complete.rs: diff --git a/target/release/deps/num_traits-43b7376d32138d38.d b/target/release/deps/num_traits-43b7376d32138d38.d deleted file mode 100644 index 1c9f406..0000000 --- a/target/release/deps/num_traits-43b7376d32138d38.d +++ /dev/null @@ -1,22 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/num_traits-43b7376d32138d38.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/bounds.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/cast.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/float.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/identities.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/int.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/checked.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/inv.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/mul_add.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/saturating.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/wrapping.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/pow.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/real.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/sign.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libnum_traits-43b7376d32138d38.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/bounds.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/cast.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/float.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/identities.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/int.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/checked.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/inv.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/mul_add.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/saturating.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/wrapping.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/pow.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/real.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/sign.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/num_traits-43b7376d32138d38.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/bounds.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/cast.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/float.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/identities.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/int.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/checked.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/inv.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/mul_add.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/saturating.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/wrapping.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/pow.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/real.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/sign.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/bounds.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/cast.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/float.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/identities.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/int.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/checked.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/inv.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/mul_add.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/saturating.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/ops/wrapping.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/pow.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/real.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/sign.rs: diff --git a/target/release/deps/num_traits-4ccb8bfa6d994b5d.d b/target/release/deps/num_traits-4ccb8bfa6d994b5d.d deleted file mode 100644 index 51f38dc..0000000 --- a/target/release/deps/num_traits-4ccb8bfa6d994b5d.d +++ /dev/null @@ -1,7 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/num_traits-4ccb8bfa6d994b5d.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.43/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libnum_traits-4ccb8bfa6d994b5d.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.43/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/num_traits-4ccb8bfa6d994b5d.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.43/src/lib.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.43/src/lib.rs: diff --git a/target/release/deps/os_str_bytes-2a7f72fe01f967fa.d b/target/release/deps/os_str_bytes-2a7f72fe01f967fa.d deleted file mode 100644 index 6069305..0000000 --- a/target/release/deps/os_str_bytes-2a7f72fe01f967fa.d +++ /dev/null @@ -1,11 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/os_str_bytes-2a7f72fe01f967fa.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/common/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/raw.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/common/raw.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libos_str_bytes-2a7f72fe01f967fa.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/common/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/raw.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/common/raw.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/os_str_bytes-2a7f72fe01f967fa.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/common/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/raw.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/common/raw.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/common/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/raw.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/os_str_bytes-2.3.1/src/common/raw.rs: diff --git a/target/release/deps/proc_macro2-8c3af62c3486e469.d b/target/release/deps/proc_macro2-8c3af62c3486e469.d deleted file mode 100644 index 0272c51..0000000 --- a/target/release/deps/proc_macro2-8c3af62c3486e469.d +++ /dev/null @@ -1,11 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/proc_macro2-8c3af62c3486e469.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/detection.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/fallback.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/wrapper.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libproc_macro2-8c3af62c3486e469.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/detection.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/fallback.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/wrapper.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/proc_macro2-8c3af62c3486e469.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/detection.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/fallback.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/wrapper.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/parse.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/detection.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/fallback.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.18/src/wrapper.rs: diff --git a/target/release/deps/proc_macro_error-f4addad7fafcd892.d b/target/release/deps/proc_macro_error-f4addad7fafcd892.d deleted file mode 100644 index 32cc5ea..0000000 --- a/target/release/deps/proc_macro_error-f4addad7fafcd892.d +++ /dev/null @@ -1,12 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/proc_macro_error-f4addad7fafcd892.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/dummy.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/diagnostic.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/sealed.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/imp/fallback.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libproc_macro_error-f4addad7fafcd892.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/dummy.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/diagnostic.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/sealed.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/imp/fallback.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/proc_macro_error-f4addad7fafcd892.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/dummy.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/diagnostic.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/sealed.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/imp/fallback.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/dummy.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/diagnostic.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/sealed.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/src/imp/fallback.rs: diff --git a/target/release/deps/proc_macro_error_attr-7bb310d49ba63a47.d b/target/release/deps/proc_macro_error_attr-7bb310d49ba63a47.d deleted file mode 100644 index 5d2de0e..0000000 --- a/target/release/deps/proc_macro_error_attr-7bb310d49ba63a47.d +++ /dev/null @@ -1,7 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libproc_macro_error_attr-7bb310d49ba63a47.so: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/settings.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/proc_macro_error_attr-7bb310d49ba63a47.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/settings.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/parse.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/settings.rs: diff --git a/target/release/deps/quote-eafe4baa7c1bf060.d b/target/release/deps/quote-eafe4baa7c1bf060.d deleted file mode 100644 index 79439c2..0000000 --- a/target/release/deps/quote-eafe4baa7c1bf060.d +++ /dev/null @@ -1,13 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/quote-eafe4baa7c1bf060.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/ext.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/format.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/ident_fragment.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/to_tokens.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/runtime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/spanned.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libquote-eafe4baa7c1bf060.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/ext.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/format.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/ident_fragment.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/to_tokens.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/runtime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/spanned.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/quote-eafe4baa7c1bf060.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/ext.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/format.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/ident_fragment.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/to_tokens.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/runtime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/spanned.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/ext.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/format.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/ident_fragment.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/to_tokens.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/runtime.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/spanned.rs: diff --git a/target/release/deps/regex-a01d99d1d1a9d2f8.d b/target/release/deps/regex-a01d99d1d1a9d2f8.d deleted file mode 100644 index 4f1124c..0000000 --- a/target/release/deps/regex-a01d99d1d1a9d2f8.d +++ /dev/null @@ -1,28 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/regex-a01d99d1d1a9d2f8.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/backtrack.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/cache.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/compile.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/dfa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/exec.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/expand.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/find_byte.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/freqs.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/input.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/literal/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/literal/imp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/pikevm.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/prog.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_builder.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_bytes.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_set.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_trait.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_unicode.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/sparse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/utf8.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libregex-a01d99d1d1a9d2f8.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/backtrack.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/cache.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/compile.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/dfa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/exec.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/expand.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/find_byte.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/freqs.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/input.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/literal/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/literal/imp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/pikevm.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/prog.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_builder.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_bytes.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_set.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_trait.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_unicode.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/sparse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/utf8.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/regex-a01d99d1d1a9d2f8.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/backtrack.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/cache.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/compile.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/dfa.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/exec.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/expand.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/find_byte.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/freqs.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/input.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/literal/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/literal/imp.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/pikevm.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/prog.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_builder.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_bytes.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_set.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_trait.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_unicode.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/sparse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/utf8.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/backtrack.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/cache.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/compile.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/dfa.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/exec.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/expand.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/find_byte.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/freqs.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/input.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/literal/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/literal/imp.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/pikevm.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/prog.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_builder.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_bytes.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_set.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_trait.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/re_unicode.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/sparse.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/utf8.rs: diff --git a/target/release/deps/regex_syntax-50d37af1de76b871.d b/target/release/deps/regex_syntax-50d37af1de76b871.d deleted file mode 100644 index 0b664c7..0000000 --- a/target/release/deps/regex_syntax-50d37af1de76b871.d +++ /dev/null @@ -1,35 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/regex_syntax-50d37af1de76b871.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/print.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/visitor.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/either.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/interval.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/literal/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/print.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/translate.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/visitor.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/age.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/case_folding_simple.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/general_category.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/grapheme_cluster_break.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/perl_word.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_bool.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_names.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_values.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/script.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/script_extension.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/sentence_break.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/word_break.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/utf8.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libregex_syntax-50d37af1de76b871.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/print.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/visitor.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/either.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/interval.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/literal/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/print.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/translate.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/visitor.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/age.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/case_folding_simple.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/general_category.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/grapheme_cluster_break.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/perl_word.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_bool.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_names.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_values.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/script.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/script_extension.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/sentence_break.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/word_break.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/utf8.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/regex_syntax-50d37af1de76b871.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/print.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/visitor.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/either.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/interval.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/literal/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/print.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/translate.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/visitor.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/age.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/case_folding_simple.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/general_category.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/grapheme_cluster_break.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/perl_word.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_bool.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_names.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_values.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/script.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/script_extension.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/sentence_break.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/word_break.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/utf8.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/parse.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/print.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/ast/visitor.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/either.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/interval.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/literal/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/print.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/translate.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/hir/visitor.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/parser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/age.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/case_folding_simple.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/general_category.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/grapheme_cluster_break.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/perl_word.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_bool.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_names.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/property_values.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/script.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/script_extension.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/sentence_break.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/unicode_tables/word_break.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/utf8.rs: diff --git a/target/release/deps/ryu-947076e03a8bfb36.d b/target/release/deps/ryu-947076e03a8bfb36.d deleted file mode 100644 index 00c734f..0000000 --- a/target/release/deps/ryu-947076e03a8bfb36.d +++ /dev/null @@ -1,18 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/ryu-947076e03a8bfb36.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/buffer/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/common.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s_full_table.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s_intrinsics.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/digit_table.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/f2s.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/f2s_intrinsics.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/exponent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/mantissa.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libryu-947076e03a8bfb36.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/buffer/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/common.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s_full_table.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s_intrinsics.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/digit_table.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/f2s.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/f2s_intrinsics.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/exponent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/mantissa.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/ryu-947076e03a8bfb36.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/buffer/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/common.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s_full_table.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s_intrinsics.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/digit_table.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/f2s.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/f2s_intrinsics.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/exponent.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/mantissa.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/buffer/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/common.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s_full_table.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/d2s_intrinsics.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/digit_table.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/f2s.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/f2s_intrinsics.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/exponent.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/pretty/mantissa.rs: diff --git a/target/release/deps/serde-7291fec13c047b66.d b/target/release/deps/serde-7291fec13c047b66.d deleted file mode 100644 index 4cf6da5..0000000 --- a/target/release/deps/serde-7291fec13c047b66.d +++ /dev/null @@ -1,17 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde-7291fec13c047b66.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/bytes.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/value.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/from_primitive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/iter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/ser/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/ser/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/utils.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libserde-7291fec13c047b66.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/bytes.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/value.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/from_primitive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/iter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/ser/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/ser/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/utils.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde-7291fec13c047b66.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/bytes.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/value.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/from_primitive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/iter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/ser/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/ser/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/utils.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/bytes.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/impls.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/value.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/de/from_primitive.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/iter.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/ser/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/ser/impls.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/utils.rs: diff --git a/target/release/deps/serde-fcd1a60d64ffce08.d b/target/release/deps/serde-fcd1a60d64ffce08.d deleted file mode 100644 index c5c9428..0000000 --- a/target/release/deps/serde-fcd1a60d64ffce08.d +++ /dev/null @@ -1,24 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde-fcd1a60d64ffce08.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/integer128.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/value.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/from_primitive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/ignored_any.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/utf8.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/fmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/impossible.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/export.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/ser.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libserde-fcd1a60d64ffce08.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/integer128.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/value.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/from_primitive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/ignored_any.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/utf8.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/fmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/impossible.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/export.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/ser.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde-fcd1a60d64ffce08.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/integer128.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/value.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/from_primitive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/ignored_any.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/utf8.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/fmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/impls.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/impossible.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/export.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/ser.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/integer128.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/value.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/from_primitive.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/ignored_any.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/impls.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/de/utf8.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/fmt.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/impls.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/ser/impossible.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/export.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/de.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.114/src/private/ser.rs: diff --git a/target/release/deps/serde_hjson-b28b7df10cde90cf.d b/target/release/deps/serde_hjson-b28b7df10cde90cf.d deleted file mode 100644 index 0623ace..0000000 --- a/target/release/deps/serde_hjson-b28b7df10cde90cf.d +++ /dev/null @@ -1,14 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde_hjson-b28b7df10cde90cf.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/forward.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/builder.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/util.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/value.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libserde_hjson-b28b7df10cde90cf.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/forward.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/builder.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/util.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/value.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde_hjson-b28b7df10cde90cf.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/forward.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/builder.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/util.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/value.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/forward.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/builder.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/de.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/ser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/util.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/value.rs: diff --git a/target/release/deps/serde_json-735629205996a197.d b/target/release/deps/serde_json-735629205996a197.d deleted file mode 100644 index dd4e007..0000000 --- a/target/release/deps/serde_json-735629205996a197.d +++ /dev/null @@ -1,23 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde_json-735629205996a197.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/map.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/from.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/index.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/partial_eq.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/features_check/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/io/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/iter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/number.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/read.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libserde_json-735629205996a197.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/map.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/from.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/index.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/partial_eq.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/features_check/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/io/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/iter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/number.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/read.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde_json-735629205996a197.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/map.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/from.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/index.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/partial_eq.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/features_check/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/io/mod.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/iter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/number.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/read.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/de.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/map.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/ser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/de.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/from.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/index.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/partial_eq.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/value/ser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/features_check/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/io/mod.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/iter.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/number.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.56/src/read.rs: diff --git a/target/release/deps/serde_test-6e2b08d7187046f1.d b/target/release/deps/serde_test-6e2b08d7187046f1.d deleted file mode 100644 index 2794a86..0000000 --- a/target/release/deps/serde_test-6e2b08d7187046f1.d +++ /dev/null @@ -1,12 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde_test-6e2b08d7187046f1.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/assert.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/token.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/error.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libserde_test-6e2b08d7187046f1.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/assert.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/token.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/error.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/serde_test-6e2b08d7187046f1.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/assert.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/token.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/error.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/assert.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/ser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/de.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/token.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_test-0.8.23/src/error.rs: diff --git a/target/release/deps/static_assertions-8642131a574c757d.d b/target/release/deps/static_assertions-8642131a574c757d.d deleted file mode 100644 index 2b0db9f..0000000 --- a/target/release/deps/static_assertions-8642131a574c757d.d +++ /dev/null @@ -1,16 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/static_assertions-8642131a574c757d.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_cfg.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_eq_align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_eq_size.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_fields.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_impl.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_obj_safe.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_trait.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_type.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/const_assert.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libstatic_assertions-8642131a574c757d.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_cfg.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_eq_align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_eq_size.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_fields.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_impl.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_obj_safe.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_trait.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_type.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/const_assert.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/static_assertions-8642131a574c757d.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_cfg.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_eq_align.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_eq_size.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_fields.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_impl.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_obj_safe.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_trait.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_type.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/const_assert.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_cfg.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_eq_align.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_eq_size.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_fields.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_impl.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_obj_safe.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_trait.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/assert_type.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/const_assert.rs: diff --git a/target/release/deps/strsim-26c573e37cfcad18.d b/target/release/deps/strsim-26c573e37cfcad18.d deleted file mode 100644 index dc97926..0000000 --- a/target/release/deps/strsim-26c573e37cfcad18.d +++ /dev/null @@ -1,7 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/strsim-26c573e37cfcad18.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libstrsim-26c573e37cfcad18.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/strsim-26c573e37cfcad18.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/src/lib.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/src/lib.rs: diff --git a/target/release/deps/syn-12af7e02de91c4e7.d b/target/release/deps/syn-12af7e02de91c4e7.d deleted file mode 100644 index 61c073e..0000000 --- a/target/release/deps/syn-12af7e02de91c4e7.d +++ /dev/null @@ -1,47 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/syn-12af7e02de91c4e7.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/group.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/token.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ident.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/attr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/bigint.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/data.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/expr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/generics.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/item.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/file.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lifetime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lit.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/mac.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/derive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/op.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/stmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ty.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/pat.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/path.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/buffer.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ext.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/punctuated.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse_quote.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse_macro_input.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/spanned.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/gen/../gen_helper.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/export.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/custom_keyword.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/custom_punctuation.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/sealed.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/span.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/thread.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lookahead.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/discouraged.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/verbatim.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/print.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/await.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libsyn-12af7e02de91c4e7.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/group.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/token.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ident.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/attr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/bigint.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/data.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/expr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/generics.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/item.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/file.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lifetime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lit.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/mac.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/derive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/op.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/stmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ty.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/pat.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/path.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/buffer.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ext.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/punctuated.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse_quote.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse_macro_input.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/spanned.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/gen/../gen_helper.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/export.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/custom_keyword.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/custom_punctuation.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/sealed.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/span.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/thread.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lookahead.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/discouraged.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/verbatim.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/print.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/await.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/syn-12af7e02de91c4e7.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/group.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/token.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ident.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/attr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/bigint.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/data.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/expr.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/generics.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/item.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/file.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lifetime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lit.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/mac.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/derive.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/op.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/stmt.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ty.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/pat.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/path.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/buffer.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ext.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/punctuated.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse_quote.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse_macro_input.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/spanned.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/gen/../gen_helper.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/export.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/custom_keyword.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/custom_punctuation.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/sealed.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/span.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/thread.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lookahead.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/discouraged.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/verbatim.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/print.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/error.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/await.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/group.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/token.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ident.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/attr.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/bigint.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/data.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/expr.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/generics.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/item.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/file.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lifetime.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lit.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/mac.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/derive.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/op.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/stmt.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ty.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/pat.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/path.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/buffer.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/ext.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/punctuated.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse_quote.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse_macro_input.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/spanned.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/gen/../gen_helper.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/export.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/custom_keyword.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/custom_punctuation.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/sealed.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/span.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/thread.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/lookahead.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/parse.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/discouraged.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/verbatim.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/print.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/error.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.33/src/await.rs: diff --git a/target/release/deps/termcolor-9965aade8290d241.d b/target/release/deps/termcolor-9965aade8290d241.d deleted file mode 100644 index e3f3a6a..0000000 --- a/target/release/deps/termcolor-9965aade8290d241.d +++ /dev/null @@ -1,7 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/termcolor-9965aade8290d241.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.0/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libtermcolor-9965aade8290d241.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.0/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/termcolor-9965aade8290d241.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.0/src/lib.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.0/src/lib.rs: diff --git a/target/release/deps/textwrap-ba51af69fce8bf78.d b/target/release/deps/textwrap-ba51af69fce8bf78.d deleted file mode 100644 index 1e7846f..0000000 --- a/target/release/deps/textwrap-ba51af69fce8bf78.d +++ /dev/null @@ -1,9 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/textwrap-ba51af69fce8bf78.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/indentation.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/splitting.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libtextwrap-ba51af69fce8bf78.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/indentation.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/splitting.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/textwrap-ba51af69fce8bf78.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/indentation.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/splitting.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/indentation.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.12.1/src/splitting.rs: diff --git a/target/release/deps/thread_local-9a90c0c2354361f2.d b/target/release/deps/thread_local-9a90c0c2354361f2.d deleted file mode 100644 index f0f4893..0000000 --- a/target/release/deps/thread_local-9a90c0c2354361f2.d +++ /dev/null @@ -1,10 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/thread_local-9a90c0c2354361f2.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/thread_id.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/unreachable.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/cached.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libthread_local-9a90c0c2354361f2.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/thread_id.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/unreachable.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/cached.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/thread_local-9a90c0c2354361f2.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/thread_id.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/unreachable.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/cached.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/thread_id.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/unreachable.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/cached.rs: diff --git a/target/release/deps/toml-468b7cd3ec291e4d.d b/target/release/deps/toml-468b7cd3ec291e4d.d deleted file mode 100644 index 23e027b..0000000 --- a/target/release/deps/toml-468b7cd3ec291e4d.d +++ /dev/null @@ -1,15 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/toml-468b7cd3ec291e4d.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/map.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/value.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/datetime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/tokens.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/spanned.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libtoml-468b7cd3ec291e4d.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/map.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/value.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/datetime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/tokens.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/spanned.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/toml-468b7cd3ec291e4d.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/map.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/value.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/datetime.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/ser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/de.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/tokens.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/macros.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/spanned.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/map.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/value.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/datetime.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/ser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/de.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/tokens.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/macros.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.7/src/spanned.rs: diff --git a/target/release/deps/unicode_segmentation-f5863c0811ff9590.d b/target/release/deps/unicode_segmentation-f5863c0811ff9590.d deleted file mode 100644 index 301a8dc..0000000 --- a/target/release/deps/unicode_segmentation-f5863c0811ff9590.d +++ /dev/null @@ -1,11 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/unicode_segmentation-f5863c0811ff9590.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/grapheme.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/word.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/sentence.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libunicode_segmentation-f5863c0811ff9590.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/grapheme.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/word.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/sentence.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/unicode_segmentation-f5863c0811ff9590.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/grapheme.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/word.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/sentence.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/grapheme.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/word.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/sentence.rs: diff --git a/target/release/deps/unicode_width-5f4356788e200ee8.d b/target/release/deps/unicode_width-5f4356788e200ee8.d deleted file mode 100644 index 2b4c3e1..0000000 --- a/target/release/deps/unicode_width-5f4356788e200ee8.d +++ /dev/null @@ -1,8 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/unicode_width-5f4356788e200ee8.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8/src/tables.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libunicode_width-5f4356788e200ee8.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8/src/tables.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/unicode_width-5f4356788e200ee8.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8/src/tables.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8/src/tables.rs: diff --git a/target/release/deps/unicode_xid-8663f59690402b5f.d b/target/release/deps/unicode_xid-8663f59690402b5f.d deleted file mode 100644 index 3e9a1ee..0000000 --- a/target/release/deps/unicode_xid-8663f59690402b5f.d +++ /dev/null @@ -1,8 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/unicode_xid-8663f59690402b5f.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/tables.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libunicode_xid-8663f59690402b5f.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/tables.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/unicode_xid-8663f59690402b5f.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/tables.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/tables.rs: diff --git a/target/release/deps/vec_map-405e6da89d886d17.d b/target/release/deps/vec_map-405e6da89d886d17.d deleted file mode 100644 index dce6138..0000000 --- a/target/release/deps/vec_map-405e6da89d886d17.d +++ /dev/null @@ -1,7 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/vec_map-405e6da89d886d17.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libvec_map-405e6da89d886d17.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/vec_map-405e6da89d886d17.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs: diff --git a/target/release/deps/version_check-00bf083b16e77ed7.d b/target/release/deps/version_check-00bf083b16e77ed7.d deleted file mode 100644 index fff857b..0000000 --- a/target/release/deps/version_check-00bf083b16e77ed7.d +++ /dev/null @@ -1,10 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/version_check-00bf083b16e77ed7.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/version.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/channel.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/date.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libversion_check-00bf083b16e77ed7.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/version.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/channel.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/date.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/version_check-00bf083b16e77ed7.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/version.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/channel.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/date.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/version.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/channel.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/date.rs: diff --git a/target/release/deps/yaml_rust-131c78e154e4a52e.d b/target/release/deps/yaml_rust-131c78e154e4a52e.d deleted file mode 100644 index e6ca83b..0000000 --- a/target/release/deps/yaml_rust-131c78e154e4a52e.d +++ /dev/null @@ -1,11 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/yaml_rust-131c78e154e4a52e.rmeta: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/emitter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/scanner.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/yaml.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/libyaml_rust-131c78e154e4a52e.rlib: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/emitter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/scanner.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/yaml.rs - -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/deps/yaml_rust-131c78e154e4a52e.d: /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/lib.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/emitter.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/parser.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/scanner.rs /home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/yaml.rs - -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/lib.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/emitter.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/parser.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/scanner.rs: -/home/penguin/.cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.4/src/yaml.rs: diff --git a/target/release/igloo b/target/release/igloo deleted file mode 100644 index a5ef3bc..0000000 Binary files a/target/release/igloo and /dev/null differ diff --git a/target/release/igloo.d b/target/release/igloo.d deleted file mode 100644 index affbe09..0000000 --- a/target/release/igloo.d +++ /dev/null @@ -1 +0,0 @@ -/storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/target/release/igloo: /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/src/igloo.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/src/igloo_action.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/src/igloo_manifest.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/src/igloo_prj.rs /storage/Shared/Documents/Projects/ePenguin/ePenguin-igloo/src/main.rs diff --git a/tempdoc/IglooArchitecture-scratch.pdf b/tempdoc/IglooArchitecture-scratch.pdf new file mode 100644 index 0000000..31f0b92 Binary files /dev/null and b/tempdoc/IglooArchitecture-scratch.pdf differ