diff --git a/aoc-1b/src/main.rs b/aoc-1b/src/main.rs index 35a160d..9d21370 100644 --- a/aoc-1b/src/main.rs +++ b/aoc-1b/src/main.rs @@ -29,6 +29,7 @@ fn main() { for line in fs::read_to_string(file_path).unwrap().lines() { + let start = safe_value; println!("{line}"); print!("start {safe_value}, "); // get the letter and the number, put them in different variables @@ -50,7 +51,7 @@ fn main() { else{ safe_value += &caps["value"].parse::().unwrap(); } - + let after = safe_value; // need to count how many times a number goes past a multiple of 100 // 50 - 68 = -18, 1 count, return to 82 @@ -67,25 +68,30 @@ fn main() { // if i start on 0 it shouldnt count // if i end on 0 it should count? - let mut hits = (safe_value/100).abs(); + let mut hits = 0; // println!("counted {hits} hits"); print!("after spin {safe_value}, "); - if safe_value < 0{ - safe_value += 100 * hits + + while safe_value >= 100{ + safe_value -= 100; + hits += 1; } - if safe_value < 0{ - hits += 1; + if safe_value < start && start == 0{ + hits -= 1; + } + + while safe_value < 0{ safe_value += 100; - // safe_value += 100 * hits; - } - else if safe_value >= 100{ - safe_value -= 100 * hits; + hits += 1 } - if safe_value == 0{ + if after < start && safe_value == 0{ hits += 1; } + + + zero_hits += hits; println!("end {safe_value}"); println!("hits: {hits}"); diff --git a/aoc-1b/target/.rustc_info.json b/aoc-1b/target/.rustc_info.json index a809717..8b6f0cf 100644 --- a/aoc-1b/target/.rustc_info.json +++ b/aoc-1b/target/.rustc_info.json @@ -1 +1 @@ -{"rustc_fingerprint":640939955106008076,"outputs":{"11857020428658561806":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/tabby/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.91.1 (ed61e7d7e 2025-11-07)\nbinary: rustc\ncommit-hash: ed61e7d7e242494fb7057f2657300d9e77bb4fcb\ncommit-date: 2025-11-07\nhost: x86_64-unknown-linux-gnu\nrelease: 1.91.1\nLLVM version: 21.1.2\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/tabby/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file +{"rustc_fingerprint":8298087884678720971,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/tabby/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.91.1 (ed61e7d7e 2025-11-07)\nbinary: rustc\ncommit-hash: ed61e7d7e242494fb7057f2657300d9e77bb4fcb\ncommit-date: 2025-11-07\nhost: x86_64-unknown-linux-gnu\nrelease: 1.91.1\nLLVM version: 21.1.2\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/aoc-1b/target/debug/aoc-1b b/aoc-1b/target/debug/aoc-1b index 5ce61ea..51bf353 100755 Binary files a/aoc-1b/target/debug/aoc-1b and b/aoc-1b/target/debug/aoc-1b differ diff --git a/aoc-1b/target/debug/deps/aoc_1b-2f7b96e67e30face b/aoc-1b/target/debug/deps/aoc_1b-2f7b96e67e30face index 5ce61ea..51bf353 100755 Binary files a/aoc-1b/target/debug/deps/aoc_1b-2f7b96e67e30face and b/aoc-1b/target/debug/deps/aoc_1b-2f7b96e67e30face differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u-3nsq31yp6skattyjtbo5rxd5a/dep-graph.bin b/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u-3nsq31yp6skattyjtbo5rxd5a/dep-graph.bin deleted file mode 100644 index ef59591..0000000 Binary files a/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u-3nsq31yp6skattyjtbo5rxd5a/dep-graph.bin and /dev/null differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u-3nsq31yp6skattyjtbo5rxd5a/query-cache.bin b/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u-3nsq31yp6skattyjtbo5rxd5a/query-cache.bin deleted file mode 100644 index 07a087a..0000000 Binary files a/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u-3nsq31yp6skattyjtbo5rxd5a/query-cache.bin and /dev/null differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i-c97zkav2v3wvi8ib3xesuh5ez/dep-graph.bin b/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i-c97zkav2v3wvi8ib3xesuh5ez/dep-graph.bin new file mode 100644 index 0000000..7d0482b Binary files /dev/null and b/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i-c97zkav2v3wvi8ib3xesuh5ez/dep-graph.bin differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i-c97zkav2v3wvi8ib3xesuh5ez/query-cache.bin b/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i-c97zkav2v3wvi8ib3xesuh5ez/query-cache.bin new file mode 100644 index 0000000..1f5efe5 Binary files /dev/null and b/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i-c97zkav2v3wvi8ib3xesuh5ez/query-cache.bin differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u-3nsq31yp6skattyjtbo5rxd5a/work-products.bin b/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i-c97zkav2v3wvi8ib3xesuh5ez/work-products.bin similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u-3nsq31yp6skattyjtbo5rxd5a/work-products.bin rename to aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i-c97zkav2v3wvi8ib3xesuh5ez/work-products.bin diff --git a/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u.lock b/aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i.lock similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdhvnolrp1-01xkq1u.lock rename to aoc-1b/target/debug/incremental/aoc_1b-2niwtf1dwvhxb/s-hdicng0qfs-12wvn2i.lock diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7l9evro3r2wd8bsik8li5et75.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7l9evro3r2wd8bsik8li5et75.o deleted file mode 100644 index d24ef56..0000000 Binary files a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7l9evro3r2wd8bsik8li5et75.o and /dev/null differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/clyvzvou891yiahcxlkdldyax.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/clyvzvou891yiahcxlkdldyax.o deleted file mode 100644 index 7dc34ba..0000000 Binary files a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/clyvzvou891yiahcxlkdldyax.o and /dev/null differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/dep-graph.bin b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/dep-graph.bin deleted file mode 100644 index 3ddf9e1..0000000 Binary files a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/dep-graph.bin and /dev/null differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/09bogcox5xjhq2gb7jf28j0gj.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/09bogcox5xjhq2gb7jf28j0gj.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/09bogcox5xjhq2gb7jf28j0gj.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/09bogcox5xjhq2gb7jf28j0gj.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/0wjo4c6fz9ajbkoq742kwx3zu.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/0wjo4c6fz9ajbkoq742kwx3zu.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/0wjo4c6fz9ajbkoq742kwx3zu.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/0wjo4c6fz9ajbkoq742kwx3zu.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/2h4d3mjtxbuxp95haany4tnrp.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/2h4d3mjtxbuxp95haany4tnrp.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/2h4d3mjtxbuxp95haany4tnrp.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/2h4d3mjtxbuxp95haany4tnrp.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3283wjea2ef5w04sg8w5wwrpv.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3283wjea2ef5w04sg8w5wwrpv.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3283wjea2ef5w04sg8w5wwrpv.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3283wjea2ef5w04sg8w5wwrpv.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/37oam7limox8mvsqgob5hcl7k.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/37oam7limox8mvsqgob5hcl7k.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/37oam7limox8mvsqgob5hcl7k.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/37oam7limox8mvsqgob5hcl7k.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3afih8qq8l3p6vlol5f7j1dpm.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3afih8qq8l3p6vlol5f7j1dpm.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3afih8qq8l3p6vlol5f7j1dpm.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3afih8qq8l3p6vlol5f7j1dpm.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3c9g3mtl7evjrswd373fl3zge.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3c9g3mtl7evjrswd373fl3zge.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3c9g3mtl7evjrswd373fl3zge.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3c9g3mtl7evjrswd373fl3zge.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3giszj5xyh06xo7ehg3kap5nx.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3giszj5xyh06xo7ehg3kap5nx.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3giszj5xyh06xo7ehg3kap5nx.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3giszj5xyh06xo7ehg3kap5nx.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3h9v86uhen9nv1o7360taerlk.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3h9v86uhen9nv1o7360taerlk.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3h9v86uhen9nv1o7360taerlk.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3h9v86uhen9nv1o7360taerlk.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3i1mqi33gmlg3zmwug99t12df.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3i1mqi33gmlg3zmwug99t12df.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3i1mqi33gmlg3zmwug99t12df.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3i1mqi33gmlg3zmwug99t12df.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3xaz2gpmu3cfo29ngud1hcba3.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3xaz2gpmu3cfo29ngud1hcba3.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3xaz2gpmu3cfo29ngud1hcba3.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3xaz2gpmu3cfo29ngud1hcba3.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3zuqlciy1c93b2j7oriv3dlgk.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3zuqlciy1c93b2j7oriv3dlgk.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/3zuqlciy1c93b2j7oriv3dlgk.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/3zuqlciy1c93b2j7oriv3dlgk.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/4gbfhe3t68lscp2buoe0rruxw.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/4gbfhe3t68lscp2buoe0rruxw.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/4gbfhe3t68lscp2buoe0rruxw.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/4gbfhe3t68lscp2buoe0rruxw.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/4iv3t15zgmpvuhkcpb6lg34io.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/4iv3t15zgmpvuhkcpb6lg34io.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/4iv3t15zgmpvuhkcpb6lg34io.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/4iv3t15zgmpvuhkcpb6lg34io.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/4pv5j95il3ex9c0hooi9ujs1h.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/4pv5j95il3ex9c0hooi9ujs1h.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/4pv5j95il3ex9c0hooi9ujs1h.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/4pv5j95il3ex9c0hooi9ujs1h.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/4x1h0021j41p5yycdu5xaocga.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/4x1h0021j41p5yycdu5xaocga.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/4x1h0021j41p5yycdu5xaocga.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/4x1h0021j41p5yycdu5xaocga.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/551pnbg0fq0a245khr7c03tm4.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/551pnbg0fq0a245khr7c03tm4.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/551pnbg0fq0a245khr7c03tm4.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/551pnbg0fq0a245khr7c03tm4.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/5fgts0ky611ju3himfzlr54o3.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/5fgts0ky611ju3himfzlr54o3.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/5fgts0ky611ju3himfzlr54o3.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/5fgts0ky611ju3himfzlr54o3.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/5pbszg2i4qelbzdvaou2dptwl.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/5pbszg2i4qelbzdvaou2dptwl.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/5pbszg2i4qelbzdvaou2dptwl.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/5pbszg2i4qelbzdvaou2dptwl.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/5qanrg0y775c5oko3b3jkpjok.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/5qanrg0y775c5oko3b3jkpjok.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/5qanrg0y775c5oko3b3jkpjok.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/5qanrg0y775c5oko3b3jkpjok.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/5zw02uxd7418r99nfip8uainq.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/5zw02uxd7418r99nfip8uainq.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/5zw02uxd7418r99nfip8uainq.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/5zw02uxd7418r99nfip8uainq.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/62e4h8z894ncle3uqdn7ee4jt.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/62e4h8z894ncle3uqdn7ee4jt.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/62e4h8z894ncle3uqdn7ee4jt.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/62e4h8z894ncle3uqdn7ee4jt.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/6bb14ebk7x33jzy4uxp8zh2yr.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/6bb14ebk7x33jzy4uxp8zh2yr.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/6bb14ebk7x33jzy4uxp8zh2yr.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/6bb14ebk7x33jzy4uxp8zh2yr.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/6hucnnbcol2prtu60tgtrrjem.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/6hucnnbcol2prtu60tgtrrjem.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/6hucnnbcol2prtu60tgtrrjem.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/6hucnnbcol2prtu60tgtrrjem.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/6nf26px2xxtkbw19tn6iehrs2.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/6nf26px2xxtkbw19tn6iehrs2.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/6nf26px2xxtkbw19tn6iehrs2.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/6nf26px2xxtkbw19tn6iehrs2.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7419ecy6abruipdg3sge8ux8w.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7419ecy6abruipdg3sge8ux8w.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7419ecy6abruipdg3sge8ux8w.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7419ecy6abruipdg3sge8ux8w.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7l9evro3r2wd8bsik8li5et75.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7l9evro3r2wd8bsik8li5et75.o new file mode 100644 index 0000000..61bf66c Binary files /dev/null and b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7l9evro3r2wd8bsik8li5et75.o differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7m7nzsvvdsrq1xadny242f2ht.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7m7nzsvvdsrq1xadny242f2ht.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7m7nzsvvdsrq1xadny242f2ht.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7m7nzsvvdsrq1xadny242f2ht.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7mf60v05i8nhg41vvt0tqcmc8.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7mf60v05i8nhg41vvt0tqcmc8.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7mf60v05i8nhg41vvt0tqcmc8.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7mf60v05i8nhg41vvt0tqcmc8.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7s2kbhabr5ws2qn6olapkxpma.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7s2kbhabr5ws2qn6olapkxpma.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7s2kbhabr5ws2qn6olapkxpma.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7s2kbhabr5ws2qn6olapkxpma.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7s9vrt3ulmbz29wbv7guttycf.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7s9vrt3ulmbz29wbv7guttycf.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7s9vrt3ulmbz29wbv7guttycf.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7s9vrt3ulmbz29wbv7guttycf.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7xoselia8tlg5q025k9jk3q65.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7xoselia8tlg5q025k9jk3q65.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7xoselia8tlg5q025k9jk3q65.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7xoselia8tlg5q025k9jk3q65.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7y7ddh0ir8reirrbp365pihqg.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7y7ddh0ir8reirrbp365pihqg.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/7y7ddh0ir8reirrbp365pihqg.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/7y7ddh0ir8reirrbp365pihqg.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/8nx8xejvkik63rk0lxyyf5g1l.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/8nx8xejvkik63rk0lxyyf5g1l.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/8nx8xejvkik63rk0lxyyf5g1l.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/8nx8xejvkik63rk0lxyyf5g1l.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/8ohhv5nc7ee59dvx8cqao2eca.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/8ohhv5nc7ee59dvx8cqao2eca.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/8ohhv5nc7ee59dvx8cqao2eca.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/8ohhv5nc7ee59dvx8cqao2eca.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/9baxbkibx10zmi4zirwbjfm9n.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/9baxbkibx10zmi4zirwbjfm9n.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/9baxbkibx10zmi4zirwbjfm9n.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/9baxbkibx10zmi4zirwbjfm9n.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/a53ol5f386ob2xyhsauz3g3mj.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/a53ol5f386ob2xyhsauz3g3mj.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/a53ol5f386ob2xyhsauz3g3mj.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/a53ol5f386ob2xyhsauz3g3mj.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/afbzvno818ib81geaw0bd7c2f.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/afbzvno818ib81geaw0bd7c2f.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/afbzvno818ib81geaw0bd7c2f.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/afbzvno818ib81geaw0bd7c2f.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/b4wq5bjawh9qdxya82028f2o7.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/b4wq5bjawh9qdxya82028f2o7.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/b4wq5bjawh9qdxya82028f2o7.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/b4wq5bjawh9qdxya82028f2o7.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/bfi97drlddi3suc6r9htuva3y.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/bfi97drlddi3suc6r9htuva3y.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/bfi97drlddi3suc6r9htuva3y.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/bfi97drlddi3suc6r9htuva3y.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/bh3cvmsewzmbjrirajr4zp43p.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/bh3cvmsewzmbjrirajr4zp43p.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/bh3cvmsewzmbjrirajr4zp43p.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/bh3cvmsewzmbjrirajr4zp43p.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/bum69wux44v6zwjov7on12e2q.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/bum69wux44v6zwjov7on12e2q.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/bum69wux44v6zwjov7on12e2q.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/bum69wux44v6zwjov7on12e2q.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/bvdsvi5bsg9n8655n0j9sm30j.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/bvdsvi5bsg9n8655n0j9sm30j.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/bvdsvi5bsg9n8655n0j9sm30j.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/bvdsvi5bsg9n8655n0j9sm30j.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/ce9prpazyrrsarbjxpslatjk5.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/ce9prpazyrrsarbjxpslatjk5.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/ce9prpazyrrsarbjxpslatjk5.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/ce9prpazyrrsarbjxpslatjk5.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/clyvzvou891yiahcxlkdldyax.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/clyvzvou891yiahcxlkdldyax.o new file mode 100644 index 0000000..74ff007 Binary files /dev/null and b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/clyvzvou891yiahcxlkdldyax.o differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/cop26mdtsrxh4cj1we5wbt36h.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/cop26mdtsrxh4cj1we5wbt36h.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/cop26mdtsrxh4cj1we5wbt36h.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/cop26mdtsrxh4cj1we5wbt36h.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/csseq1hbvdirvm2dj8nh62ldv.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/csseq1hbvdirvm2dj8nh62ldv.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/csseq1hbvdirvm2dj8nh62ldv.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/csseq1hbvdirvm2dj8nh62ldv.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/cyjel4xp2ngiqb5j744riuv11.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/cyjel4xp2ngiqb5j744riuv11.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/cyjel4xp2ngiqb5j744riuv11.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/cyjel4xp2ngiqb5j744riuv11.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/dep-graph.bin b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/dep-graph.bin new file mode 100644 index 0000000..9b37784 Binary files /dev/null and b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/dep-graph.bin differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/dk0pbe3g0o9eqnork9dqxhrm9.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/dk0pbe3g0o9eqnork9dqxhrm9.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/dk0pbe3g0o9eqnork9dqxhrm9.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/dk0pbe3g0o9eqnork9dqxhrm9.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/e170g0cjwyctpcxtmabriafl2.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/e170g0cjwyctpcxtmabriafl2.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/e170g0cjwyctpcxtmabriafl2.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/e170g0cjwyctpcxtmabriafl2.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/emz4ty538d4n8ltm998uosuri.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/emz4ty538d4n8ltm998uosuri.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/emz4ty538d4n8ltm998uosuri.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/emz4ty538d4n8ltm998uosuri.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/eppvvycwkwdhlaokhnr7lbc2g.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/eppvvycwkwdhlaokhnr7lbc2g.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/eppvvycwkwdhlaokhnr7lbc2g.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/eppvvycwkwdhlaokhnr7lbc2g.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/eu3m1mi765l8y31jhdhs88zm5.o b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/eu3m1mi765l8y31jhdhs88zm5.o similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/eu3m1mi765l8y31jhdhs88zm5.o rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/eu3m1mi765l8y31jhdhs88zm5.o diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/query-cache.bin b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/query-cache.bin similarity index 76% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/query-cache.bin rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/query-cache.bin index e7f1be7..33abe3d 100644 Binary files a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/query-cache.bin and b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/query-cache.bin differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/work-products.bin b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/work-products.bin similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q-2eglpr471o7ose1ydv5r4bowp/work-products.bin rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4-bpimsdet62xmkpkimra4hjnye/work-products.bin diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q.lock b/aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4.lock similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdhvnou7am-0kjlq8q.lock rename to aoc-1b/target/debug/incremental/aoc_1b-3e5j72cz9v64l/s-hdicngwkic-0hahao4.lock diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk-ec60wmg2loxjsb3dg1yb7c5ri/dep-graph.bin b/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk-ec60wmg2loxjsb3dg1yb7c5ri/dep-graph.bin deleted file mode 100644 index 3637ba9..0000000 Binary files a/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk-ec60wmg2loxjsb3dg1yb7c5ri/dep-graph.bin and /dev/null differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk-ec60wmg2loxjsb3dg1yb7c5ri/query-cache.bin b/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk-ec60wmg2loxjsb3dg1yb7c5ri/query-cache.bin deleted file mode 100644 index b64bed7..0000000 Binary files a/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk-ec60wmg2loxjsb3dg1yb7c5ri/query-cache.bin and /dev/null differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6-2ms36epis10afpe6ayvrxxd15/dep-graph.bin b/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6-2ms36epis10afpe6ayvrxxd15/dep-graph.bin new file mode 100644 index 0000000..aca69f5 Binary files /dev/null and b/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6-2ms36epis10afpe6ayvrxxd15/dep-graph.bin differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6-2ms36epis10afpe6ayvrxxd15/query-cache.bin b/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6-2ms36epis10afpe6ayvrxxd15/query-cache.bin new file mode 100644 index 0000000..e25f3c3 Binary files /dev/null and b/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6-2ms36epis10afpe6ayvrxxd15/query-cache.bin differ diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk-ec60wmg2loxjsb3dg1yb7c5ri/work-products.bin b/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6-2ms36epis10afpe6ayvrxxd15/work-products.bin similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk-ec60wmg2loxjsb3dg1yb7c5ri/work-products.bin rename to aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6-2ms36epis10afpe6ayvrxxd15/work-products.bin diff --git a/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk.lock b/aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6.lock similarity index 100% rename from aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdhvnolrp1-02hskhk.lock rename to aoc-1b/target/debug/incremental/aoc_1b-3vpylaxvdqywm/s-hdicng0qfr-1tg5ta6.lock diff --git a/aoc-1b/target/flycheck2/stderr b/aoc-1b/target/flycheck2/stderr index b9dcb06..7ca5ad1 100644 --- a/aoc-1b/target/flycheck2/stderr +++ b/aoc-1b/target/flycheck2/stderr @@ -1 +1,12 @@ - Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.02s + 0.093562248s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: stale: changed "/home/tabby/rust-projects/aoc-1b/src/main.rs" + 0.093577438s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: (vs) "/home/tabby/rust-projects/aoc-1b/target/debug/.fingerprint/aoc-1b-917b8d9d404e499a/dep-bin-aoc-1b" + 0.093583051s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: FileTime { seconds: 1764631767, nanos: 802321084 } < FileTime { seconds: 1764631785, nanos: 866379579 } + 0.093636471s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: fingerprint dirty for aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b)/Check { test: false }/TargetInner { name: "aoc-1b", doc: true, ..: with_path("/home/tabby/rust-projects/aoc-1b/src/main.rs", Edition2024) } + 0.093647695s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "/home/tabby/rust-projects/aoc-1b/target/debug/.fingerprint/aoc-1b-917b8d9d404e499a/dep-bin-aoc-1b", reference_mtime: FileTime { seconds: 1764631767, nanos: 802321084 }, stale: "/home/tabby/rust-projects/aoc-1b/src/main.rs", stale_mtime: FileTime { seconds: 1764631785, nanos: 866379579 } })) + 0.093972338s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: stale: changed "/home/tabby/rust-projects/aoc-1b/src/main.rs" + 0.093979886s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: (vs) "/home/tabby/rust-projects/aoc-1b/target/debug/.fingerprint/aoc-1b-eb026e6914e22efc/dep-test-bin-aoc-1b" + 0.093984734s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: FileTime { seconds: 1764631767, nanos: 802321084 } < FileTime { seconds: 1764631785, nanos: 866379579 } + 0.094021386s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: fingerprint dirty for aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b)/Check { test: true }/TargetInner { name: "aoc-1b", doc: true, ..: with_path("/home/tabby/rust-projects/aoc-1b/src/main.rs", Edition2024) } + 0.094030812s INFO prepare_target{force=false package_id=aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) target="aoc-1b"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "/home/tabby/rust-projects/aoc-1b/target/debug/.fingerprint/aoc-1b-eb026e6914e22efc/dep-test-bin-aoc-1b", reference_mtime: FileTime { seconds: 1764631767, nanos: 802321084 }, stale: "/home/tabby/rust-projects/aoc-1b/src/main.rs", stale_mtime: FileTime { seconds: 1764631785, nanos: 866379579 } })) + Checking aoc-1b v0.1.0 (/home/tabby/rust-projects/aoc-1b) + Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.15s diff --git a/aoc-1b/target/flycheck2/stdout b/aoc-1b/target/flycheck2/stdout index 6b7912a..6109d42 100644 --- a/aoc-1b/target/flycheck2/stdout +++ b/aoc-1b/target/flycheck2/stdout @@ -3,6 +3,6 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8","manifest_path":"/home/tabby/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"/home/tabby/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.8/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/home/tabby/rust-projects/aoc-1b/target/debug/deps/libregex_syntax-3c02c2619e360563.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13","manifest_path":"/home/tabby/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"/home/tabby/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-onepass","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["/home/tabby/rust-projects/aoc-1b/target/debug/deps/libregex_automata-cd902cf7bb778459.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2","manifest_path":"/home/tabby/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"/home/tabby/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","perf","perf-backtrack","perf-cache","perf-dfa","perf-inline","perf-literal","perf-onepass","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/home/tabby/rust-projects/aoc-1b/target/debug/deps/libregex-58ac3800c315fb75.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"path+file:///home/tabby/rust-projects/aoc-1b#0.1.0","manifest_path":"/home/tabby/rust-projects/aoc-1b/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"aoc-1b","src_path":"/home/tabby/rust-projects/aoc-1b/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["/home/tabby/rust-projects/aoc-1b/target/debug/deps/libaoc_1b-eb026e6914e22efc.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"path+file:///home/tabby/rust-projects/aoc-1b#0.1.0","manifest_path":"/home/tabby/rust-projects/aoc-1b/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"aoc-1b","src_path":"/home/tabby/rust-projects/aoc-1b/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/tabby/rust-projects/aoc-1b/target/debug/deps/libaoc_1b-917b8d9d404e499a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///home/tabby/rust-projects/aoc-1b#0.1.0","manifest_path":"/home/tabby/rust-projects/aoc-1b/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"aoc-1b","src_path":"/home/tabby/rust-projects/aoc-1b/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/tabby/rust-projects/aoc-1b/target/debug/deps/libaoc_1b-917b8d9d404e499a.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///home/tabby/rust-projects/aoc-1b#0.1.0","manifest_path":"/home/tabby/rust-projects/aoc-1b/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"aoc-1b","src_path":"/home/tabby/rust-projects/aoc-1b/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["/home/tabby/rust-projects/aoc-1b/target/debug/deps/libaoc_1b-eb026e6914e22efc.rmeta"],"executable":null,"fresh":false} {"reason":"build-finished","success":true}