diff --git a/in_development/rust/osupdater/src/main.rs b/in_development/rust/osupdater/src/main.rs
index 4630cd7..acb91a0 100644
--- a/in_development/rust/osupdater/src/main.rs
+++ b/in_development/rust/osupdater/src/main.rs
@@ -27,6 +27,11 @@ fn main() {
let mut apt_bin = String::from_utf8(find_apt.stdout).unwrap();
trim_newline(&mut apt_bin);
+ let find_dnf5 = Command::new("which")
+ .arg("dnf5").stdout(Stdio::piped()).output().unwrap();
+ let mut dnf5_bin = String::from_utf8(find_dnf5.stdout).unwrap();
+ trim_newline(&mut dnf5_bin);
+
let find_dnf = Command::new("which")
.arg("dnf").stdout(Stdio::piped()).output().unwrap();
let mut dnf_bin = String::from_utf8(find_dnf.stdout).unwrap();
@@ -81,7 +86,7 @@ fn main() {
}
// dnf
- cprintln!("hecking for dnf");
+ cprintln!("Checking for dnf");
let path = Path::new(&dnf_bin);
if path.exists(){
let mut cmd =
@@ -91,7 +96,19 @@ fn main() {
.spawn().unwrap();
let _output = cmd.wait();
}
-
+
+ // dnf5
+ cprintln!("Checking for dnf5");
+ let path = Path::new(&dnf5_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&sudo_bin)
+ .arg(&dnf5_bin).arg("--refresh").arg("--skip-broken").arg("--nobest").arg("-y").arg("update")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+
// pacman
cprintln!("Checking for pacman");
let path = Path::new(&pacman_bin);
diff --git a/in_development/rust/osupdater/src/main.rs.backup b/in_development/rust/osupdater/src/main.rs.backup
new file mode 100644
index 0000000..4630cd7
--- /dev/null
+++ b/in_development/rust/osupdater/src/main.rs.backup
@@ -0,0 +1,191 @@
+use std::process::{Command, Stdio};
+use std::path::Path;
+use color_print::cprintln;
+
+fn trim_newline(s: &mut String) {
+ if s.ends_with('\n') {
+ s.pop();
+ if s.ends_with('\r') {
+ s.pop();
+ }
+ }
+}
+
+fn main() {
+ {
+ // Tell user that we are going to start the update procedure
+ cprintln!("osupdater : rust edition\n");
+ cprintln!("This tool will locate any package managers on your system and run the update tool appropriate to it.\n");
+ cprintln!("Looking for native package managers.\n");
+ let find_sudo = Command::new("which")
+ .arg("sudo").stdout(Stdio::piped()).output().unwrap();
+ let mut sudo_bin = String::from_utf8(find_sudo.stdout).unwrap();
+ trim_newline(&mut sudo_bin);
+
+ let find_apt = Command::new("which")
+ .arg("apt").stdout(Stdio::piped()).output().unwrap();
+ let mut apt_bin = String::from_utf8(find_apt.stdout).unwrap();
+ trim_newline(&mut apt_bin);
+
+ let find_dnf = Command::new("which")
+ .arg("dnf").stdout(Stdio::piped()).output().unwrap();
+ let mut dnf_bin = String::from_utf8(find_dnf.stdout).unwrap();
+ trim_newline(&mut dnf_bin);
+
+ let find_pacman = Command::new("which")
+ .arg("pacman").stdout(Stdio::piped()).output().unwrap();
+ let mut pacman_bin = String::from_utf8(find_pacman.stdout).unwrap();
+ trim_newline(&mut pacman_bin);
+
+ let find_urpmi = Command::new("which")
+ .arg("urpmi").stdout(Stdio::piped()).output().unwrap();
+ let mut urpmi_bin = String::from_utf8(find_urpmi.stdout).unwrap();
+ trim_newline(&mut urpmi_bin);
+
+ let find_zypper = Command::new("which")
+ .arg("zypper").stdout(Stdio::piped()).output().unwrap();
+ let mut zypper_bin = String::from_utf8(find_zypper.stdout).unwrap();
+ trim_newline(&mut zypper_bin);
+
+ let find_flatpak = Command::new("which")
+ .arg("flatpak").stdout(Stdio::piped()).output().unwrap();
+ let mut flatpak_bin = String::from_utf8(find_flatpak.stdout).unwrap();
+ trim_newline(&mut flatpak_bin);
+
+ let find_snap = Command::new("which")
+ .arg("snap").stdout(Stdio::piped()).output().unwrap();
+ let mut snap_bin = String::from_utf8(find_snap.stdout).unwrap();
+ trim_newline(&mut snap_bin);
+
+ let find_pip_review = Command::new("which")
+ .arg("pip-review").stdout(Stdio::piped()).output().unwrap();
+ let mut pip_review_bin = String::from_utf8(find_pip_review.stdout).unwrap();
+ trim_newline(&mut pip_review_bin);
+
+ //apt
+ cprintln!("Checking for apt");
+ let path = Path::new(&apt_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&sudo_bin)
+ .arg(&apt_bin).arg("update").arg("-y")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ let mut cmd =
+ Command::new(&sudo_bin)
+ .arg(&apt_bin).arg("upgrade").arg("-y")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+
+ // dnf
+ cprintln!("hecking for dnf");
+ let path = Path::new(&dnf_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&sudo_bin)
+ .arg(&dnf_bin).arg("--refresh").arg("--skip-broken").arg("--nobest").arg("-y").arg("update")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+
+ // pacman
+ cprintln!("Checking for pacman");
+ let path = Path::new(&pacman_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&sudo_bin)
+ .arg(&pacman_bin).arg("-Syu")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+
+ // urpmi
+ cprintln!("Checking for urpmi");
+ let path = Path::new(&urpmi_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&sudo_bin)
+ .arg(&urpmi_bin).arg("--auto-update").arg("-y")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+
+ // zypper
+ cprintln!("Checking for zypper");
+ let path = Path::new(&zypper_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&sudo_bin)
+ .arg(&zypper_bin).arg("in").arg("-y")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+
+ // Check container formats
+ cprintln!("Checking application containers");
+
+
+ // flatpak
+ cprintln!("Checking for user flatpak installs");
+ let path = Path::new(&flatpak_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&flatpak_bin)
+ .arg("update").arg("--user").arg("-y")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+ cprintln!("Checking for system flatpak installs");
+ let path = Path::new(&flatpak_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&sudo_bin)
+ .arg(&flatpak_bin).arg("update").arg("-y")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+
+ // snap
+ cprintln!("Checking for user snap installation");
+ let path = Path::new(&snap_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&snap_bin)
+ .arg("refresh").arg("-y")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+ cprintln!("Checking for system snap installation");
+ let path = Path::new(&snap_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&sudo_bin)
+ .arg(&snap_bin).arg("refresh").arg("-y")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+
+ //Python
+ cprintln!("Updating Python user installation via pip-review");
+ let path = Path::new(&pip_review_bin);
+ if path.exists(){
+ let mut cmd =
+ Command::new(&pip_review_bin)
+ .arg("--auto").arg("--local").arg("--user")
+ .stdout(Stdio::inherit()).stderr(Stdio::inherit())
+ .spawn().unwrap();
+ let _output = cmd.wait();
+ }
+ }
+}
diff --git a/in_development/rust/osupdater/target/.rustc_info.json b/in_development/rust/osupdater/target/.rustc_info.json
index f20ee40..9a16a85 100644
--- a/in_development/rust/osupdater/target/.rustc_info.json
+++ b/in_development/rust/osupdater/target/.rustc_info.json
@@ -1 +1 @@
-{"rustc_fingerprint":6005300477294841630,"outputs":{"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/usr\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\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":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.76.0 (07dca489a 2024-02-04) (Fedora 1.76.0-1.fc39)\nbinary: rustc\ncommit-hash: 07dca489ac2d933c78d3c5158e3f43beefeb02ce\ncommit-date: 2024-02-04\nhost: x86_64-unknown-linux-gnu\nrelease: 1.76.0\nLLVM version: 17.0.6\n","stderr":""}},"successes":{}}
\ No newline at end of file
+{"rustc_fingerprint":9572355591206594752,"outputs":{"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.75.0 (82e1608df 2023-12-21) (Red Hat 1.75.0-1.el9)\nbinary: rustc\ncommit-hash: 82e1608dfa6e0b5569232559e3d385fea5a93112\ncommit-date: 2023-12-21\nhost: x86_64-unknown-linux-gnu\nrelease: 1.75.0\nLLVM version: 17.0.6\n","stderr":""},"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/usr\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"popcnt\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_feature=\"sse4.1\"\ntarget_feature=\"sse4.2\"\ntarget_feature=\"ssse3\"\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
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/dep-lib-color-print b/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/dep-lib-color-print
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/dep-lib-color-print differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/lib-color-print b/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/lib-color-print
new file mode 100644
index 0000000..9d8f64c
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/lib-color-print
@@ -0,0 +1 @@
+5a70496c48121e08
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/lib-color-print.json b/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/lib-color-print.json
new file mode 100644
index 0000000..5900e77
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/color-print-b0a8a137c95496b0/lib-color-print.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[]","target":1649529747995039023,"profile":14094339167972473758,"path":1482003101201296346,"deps":[[6208786090756205864,"color_print_proc_macro",false,667077868587412508]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/color-print-b0a8a137c95496b0/dep-lib-color-print"}}],"rustflags":[],"metadata":14046565314639412879,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/dep-lib-color-print-proc-macro b/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/dep-lib-color-print-proc-macro
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/dep-lib-color-print-proc-macro differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/lib-color-print-proc-macro b/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/lib-color-print-proc-macro
new file mode 100644
index 0000000..b22e6b7
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/lib-color-print-proc-macro
@@ -0,0 +1 @@
+1c6cad82c9ef4109
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/lib-color-print-proc-macro.json b/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/lib-color-print-proc-macro.json
new file mode 100644
index 0000000..830ae19
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/lib-color-print-proc-macro.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[]","target":15526862357881787706,"profile":1680656715729475402,"path":7452602653615712394,"deps":[[6954241390595330609,"nom",false,4929613825103873166],[9618700007800273094,"quote",false,1429826601982712253],[16285336375947054926,"proc_macro2",false,4787332945579720227],[17143850428905299221,"syn",false,9229262308866274896]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/color-print-proc-macro-c4826591f3f03cb4/dep-lib-color-print-proc-macro"}}],"rustflags":[],"metadata":209986892890977964,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/dep-lib-memchr b/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/dep-lib-memchr
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/dep-lib-memchr differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/lib-memchr b/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/lib-memchr
new file mode 100644
index 0000000..48b62db
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/lib-memchr
@@ -0,0 +1 @@
+49001e25cca28919
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/lib-memchr.json b/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/lib-memchr.json
new file mode 100644
index 0000000..16f25d6
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/memchr-0689decaaa1f50c7/lib-memchr.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[\"alloc\", \"std\"]","target":13876443730220172507,"profile":1680656715729475402,"path":801806671007159472,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-0689decaaa1f50c7/dep-lib-memchr"}}],"rustflags":[],"metadata":7513296495906230968,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/dep-lib-minimal-lexical b/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/dep-lib-minimal-lexical
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/dep-lib-minimal-lexical differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/lib-minimal-lexical b/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/lib-minimal-lexical
new file mode 100644
index 0000000..114f785
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/lib-minimal-lexical
@@ -0,0 +1 @@
+57a4013fe180eff4
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/lib-minimal-lexical.json b/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/lib-minimal-lexical.json
new file mode 100644
index 0000000..0428c28
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/minimal-lexical-69772a73ef162988/lib-minimal-lexical.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[\"std\"]","target":1009644266440026082,"profile":1680656715729475402,"path":9900736054203991942,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/minimal-lexical-69772a73ef162988/dep-lib-minimal-lexical"}}],"rustflags":[],"metadata":2051824130325965549,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/dep-lib-nom b/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/dep-lib-nom
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/dep-lib-nom differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/lib-nom b/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/lib-nom
new file mode 100644
index 0000000..802995a
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/lib-nom
@@ -0,0 +1 @@
+8ec42bdda7816944
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/lib-nom.json b/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/lib-nom.json
new file mode 100644
index 0000000..2716d9d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/nom-87d9e7ddd06c9f79/lib-nom.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[\"alloc\", \"default\", \"std\"]","target":1745534342555606081,"profile":1680656715729475402,"path":17763511593432912576,"deps":[[116639956507331903,"memchr",false,1840180920437309513],[10953957149292187054,"minimal_lexical",false,17649467169601332311]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/nom-87d9e7ddd06c9f79/dep-lib-nom"}}],"rustflags":[],"metadata":9858338621379386705,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/bin-osupdater b/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/bin-osupdater
new file mode 100644
index 0000000..20ae78c
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/bin-osupdater
@@ -0,0 +1 @@
+4e733d97a1f1b142
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/bin-osupdater.json b/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/bin-osupdater.json
new file mode 100644
index 0000000..d724a08
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/bin-osupdater.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[]","target":3155679793706155574,"profile":14094339167972473758,"path":1684066648322511884,"deps":[[11048177716712752634,"color_print",false,584925103868440666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/osupdater-3c55bac714fcf16d/dep-bin-osupdater"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/dep-bin-osupdater b/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/dep-bin-osupdater
new file mode 100644
index 0000000..5fdf103
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/dep-bin-osupdater differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/osupdater-3c55bac714fcf16d/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/build-script-build-script-build b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/build-script-build-script-build
new file mode 100644
index 0000000..7d8fab2
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/build-script-build-script-build
@@ -0,0 +1 @@
+9916e8941bcccc4d
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/build-script-build-script-build.json b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/build-script-build-script-build.json
new file mode 100644
index 0000000..0678567
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[\"default\", \"proc-macro\"]","target":427768481117760528,"profile":1680656715729475402,"path":16890373513329438754,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-02f94aa952e09524/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/dep-build-script-build-script-build b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/dep-build-script-build-script-build
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/dep-build-script-build-script-build differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-02f94aa952e09524/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/dep-lib-proc-macro2 b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/dep-lib-proc-macro2
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/dep-lib-proc-macro2 differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/lib-proc-macro2 b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/lib-proc-macro2
new file mode 100644
index 0000000..b10024b
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/lib-proc-macro2
@@ -0,0 +1 @@
+23becd1af3057042
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/lib-proc-macro2.json b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/lib-proc-macro2.json
new file mode 100644
index 0000000..cb4bed5
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-394f2e8df8028e6d/lib-proc-macro2.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[\"default\", \"proc-macro\"]","target":16714894217519287322,"profile":1680656715729475402,"path":5360015303756003254,"deps":[[10045147784146067611,"unicode_ident",false,16456959812345648392],[16285336375947054926,"build_script_build",false,9901701217851195484]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-394f2e8df8028e6d/dep-lib-proc-macro2"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-404c069f07f7c94c/run-build-script-build-script-build b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-404c069f07f7c94c/run-build-script-build-script-build
new file mode 100644
index 0000000..a11a91c
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-404c069f07f7c94c/run-build-script-build-script-build
@@ -0,0 +1 @@
+5cc012d2cbe86989
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-404c069f07f7c94c/run-build-script-build-script-build.json b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-404c069f07f7c94c/run-build-script-build-script-build.json
new file mode 100644
index 0000000..2997df9
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/proc-macro2-404c069f07f7c94c/run-build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"","target":0,"profile":0,"path":0,"deps":[[16285336375947054926,"build_script_build",false,5606080055003846297]],"local":[{"RerunIfChanged":{"output":"release/build/proc-macro2-404c069f07f7c94c/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/dep-lib-quote b/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/dep-lib-quote
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/dep-lib-quote differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/lib-quote b/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/lib-quote
new file mode 100644
index 0000000..f175344
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/lib-quote
@@ -0,0 +1 @@
+bd59950db8c3d713
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/lib-quote.json b/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/lib-quote.json
new file mode 100644
index 0000000..1f6d4d5
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/quote-b4b4d0da469019e9/lib-quote.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[\"default\", \"proc-macro\"]","target":10824007166531090010,"profile":1680656715729475402,"path":18347439595570965489,"deps":[[16285336375947054926,"proc_macro2",false,4787332945579720227]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/quote-b4b4d0da469019e9/dep-lib-quote"}}],"rustflags":[],"metadata":2717943770976187624,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/dep-lib-syn b/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/dep-lib-syn
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/dep-lib-syn differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/lib-syn b/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/lib-syn
new file mode 100644
index 0000000..bded498
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/lib-syn
@@ -0,0 +1 @@
+5036e0d22bed1480
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/lib-syn.json b/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/lib-syn.json
new file mode 100644
index 0000000..795d482
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/syn-00782ea606045dec/lib-syn.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[\"clone-impls\", \"default\", \"derive\", \"parsing\", \"printing\", \"proc-macro\", \"quote\"]","target":8516813339728780372,"profile":1680656715729475402,"path":12914230715315481689,"deps":[[9618700007800273094,"quote",false,1429826601982712253],[10045147784146067611,"unicode_ident",false,16456959812345648392],[16285336375947054926,"proc_macro2",false,4787332945579720227],[17143850428905299221,"build_script_build",false,2364663867711904675]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-00782ea606045dec/dep-lib-syn"}}],"rustflags":[],"metadata":6886477143387768027,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-7bdeb12cdc1c0d36/run-build-script-build-script-build b/in_development/rust/osupdater/target/release/.fingerprint/syn-7bdeb12cdc1c0d36/run-build-script-build-script-build
new file mode 100644
index 0000000..3517a7f
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/syn-7bdeb12cdc1c0d36/run-build-script-build-script-build
@@ -0,0 +1 @@
+a35b2b5842f9d020
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-7bdeb12cdc1c0d36/run-build-script-build-script-build.json b/in_development/rust/osupdater/target/release/.fingerprint/syn-7bdeb12cdc1c0d36/run-build-script-build-script-build.json
new file mode 100644
index 0000000..9bdc9de
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/syn-7bdeb12cdc1c0d36/run-build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"","target":0,"profile":0,"path":0,"deps":[[17143850428905299221,"build_script_build",false,261543043478729410]],"local":[{"Precalculated":"1.0.109"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/build-script-build-script-build b/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/build-script-build-script-build
new file mode 100644
index 0000000..53cfb71
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/build-script-build-script-build
@@ -0,0 +1 @@
+c23206280330a103
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/build-script-build-script-build.json b/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/build-script-build-script-build.json
new file mode 100644
index 0000000..d3a8e60
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[\"clone-impls\", \"default\", \"derive\", \"parsing\", \"printing\", \"proc-macro\", \"quote\"]","target":2297296889237502566,"profile":1680656715729475402,"path":5656660771473710667,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-a3a9f47881cf0f66/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":6886477143387768027,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/dep-build-script-build-script-build b/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/dep-build-script-build-script-build
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/dep-build-script-build-script-build differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/syn-a3a9f47881cf0f66/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/dep-lib-unicode-ident b/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/dep-lib-unicode-ident
new file mode 100644
index 0000000..1b1cb4d
Binary files /dev/null and b/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/dep-lib-unicode-ident differ
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/invoked.timestamp b/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/lib-unicode-ident b/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/lib-unicode-ident
new file mode 100644
index 0000000..2118813
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/lib-unicode-ident
@@ -0,0 +1 @@
+08d5bdb1c1dd62e4
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/lib-unicode-ident.json b/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/lib-unicode-ident.json
new file mode 100644
index 0000000..c9def4c
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/.fingerprint/unicode-ident-e20d05bcb61266f0/lib-unicode-ident.json
@@ -0,0 +1 @@
+{"rustc":135327596944711352,"features":"[]","target":7243519288898877878,"profile":1680656715729475402,"path":2775394328032971048,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/unicode-ident-e20d05bcb61266f0/dep-lib-unicode-ident"}}],"rustflags":[],"metadata":1159190378059262574,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build-script-build b/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build-script-build
new file mode 100755
index 0000000..2e8464f
Binary files /dev/null and b/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build-script-build differ
diff --git a/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build_script_build-02f94aa952e09524 b/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build_script_build-02f94aa952e09524
new file mode 100755
index 0000000..2e8464f
Binary files /dev/null and b/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build_script_build-02f94aa952e09524 differ
diff --git a/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build_script_build-02f94aa952e09524.d b/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build_script_build-02f94aa952e09524.d
new file mode 100644
index 0000000..9ef0b88
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build_script_build-02f94aa952e09524.d
@@ -0,0 +1,5 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build_script_build-02f94aa952e09524: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/build.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/build/proc-macro2-02f94aa952e09524/build_script_build-02f94aa952e09524.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/build.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/build.rs:
diff --git a/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/invoked.timestamp b/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/out/proc_macro2.d b/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/out/proc_macro2.d
new file mode 100644
index 0000000..90a1f95
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/out/proc_macro2.d
@@ -0,0 +1,7 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/out/libproc_macro2.rmeta: build/probe.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/out/proc_macro2.d: build/probe.rs
+
+build/probe.rs:
+
+# env-dep:RUSTC_BOOTSTRAP
diff --git a/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/output b/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/output
new file mode 100644
index 0000000..3bc5505
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/output
@@ -0,0 +1,3 @@
+cargo:rerun-if-changed=build/probe.rs
+cargo:rustc-cfg=wrap_proc_macro
+cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP
diff --git a/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/root-output b/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/root-output
new file mode 100644
index 0000000..70f8046
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/root-output
@@ -0,0 +1 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/out
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/stderr b/in_development/rust/osupdater/target/release/build/proc-macro2-404c069f07f7c94c/stderr
new file mode 100644
index 0000000..e69de29
diff --git a/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/invoked.timestamp b/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/output b/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/output
new file mode 100644
index 0000000..614b948
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/output
@@ -0,0 +1 @@
+cargo:rustc-cfg=syn_disable_nightly_tests
diff --git a/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/root-output b/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/root-output
new file mode 100644
index 0000000..8278b9f
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/root-output
@@ -0,0 +1 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/out
\ No newline at end of file
diff --git a/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/stderr b/in_development/rust/osupdater/target/release/build/syn-7bdeb12cdc1c0d36/stderr
new file mode 100644
index 0000000..e69de29
diff --git a/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build-script-build b/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build-script-build
new file mode 100755
index 0000000..7f1fb6b
Binary files /dev/null and b/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build-script-build differ
diff --git a/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build_script_build-a3a9f47881cf0f66 b/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build_script_build-a3a9f47881cf0f66
new file mode 100755
index 0000000..7f1fb6b
Binary files /dev/null and b/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build_script_build-a3a9f47881cf0f66 differ
diff --git a/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build_script_build-a3a9f47881cf0f66.d b/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build_script_build-a3a9f47881cf0f66.d
new file mode 100644
index 0000000..f661860
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build_script_build-a3a9f47881cf0f66.d
@@ -0,0 +1,5 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build_script_build-a3a9f47881cf0f66: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/build.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/build/syn-a3a9f47881cf0f66/build_script_build-a3a9f47881cf0f66.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/build.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/build.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/color_print-b0a8a137c95496b0.d b/in_development/rust/osupdater/target/release/deps/color_print-b0a8a137c95496b0.d
new file mode 100644
index 0000000..269ee3c
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/color_print-b0a8a137c95496b0.d
@@ -0,0 +1,7 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libcolor_print-b0a8a137c95496b0.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-0.3.5/src/lib.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libcolor_print-b0a8a137c95496b0.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-0.3.5/src/lib.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/color_print-b0a8a137c95496b0.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-0.3.5/src/lib.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-0.3.5/src/lib.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/color_print_proc_macro-c4826591f3f03cb4.d b/in_development/rust/osupdater/target/release/deps/color_print_proc_macro-c4826591f3f03cb4.d
new file mode 100644
index 0000000..684456a
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/color_print_proc_macro-c4826591f3f03cb4.d
@@ -0,0 +1,18 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libcolor_print_proc_macro-c4826591f3f03cb4.so: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/util.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/ansi.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/ansi_constants.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/color_context.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/format_args/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/format_args/format_arg.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/types.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/color_tag.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/nom_prelude.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/util.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/untagged.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/color_print_proc_macro-c4826591f3f03cb4.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/util.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/ansi.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/ansi_constants.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/color_context.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/format_args/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/format_args/format_arg.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/types.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/color_tag.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/nom_prelude.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/util.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/untagged.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/lib.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/util.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/ansi.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/ansi_constants.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/color_context.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/error.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/format_args/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/format_args/format_arg.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/types.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/color_tag.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/nom_prelude.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/parse/util.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.5/src/untagged.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/libcolor_print-b0a8a137c95496b0.rlib b/in_development/rust/osupdater/target/release/deps/libcolor_print-b0a8a137c95496b0.rlib
new file mode 100644
index 0000000..1dce79e
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libcolor_print-b0a8a137c95496b0.rlib differ
diff --git a/in_development/rust/osupdater/target/release/deps/libcolor_print-b0a8a137c95496b0.rmeta b/in_development/rust/osupdater/target/release/deps/libcolor_print-b0a8a137c95496b0.rmeta
new file mode 100644
index 0000000..ce6ac76
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libcolor_print-b0a8a137c95496b0.rmeta differ
diff --git a/in_development/rust/osupdater/target/release/deps/libcolor_print_proc_macro-c4826591f3f03cb4.so b/in_development/rust/osupdater/target/release/deps/libcolor_print_proc_macro-c4826591f3f03cb4.so
new file mode 100755
index 0000000..34a68c0
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libcolor_print_proc_macro-c4826591f3f03cb4.so differ
diff --git a/in_development/rust/osupdater/target/release/deps/libmemchr-0689decaaa1f50c7.rlib b/in_development/rust/osupdater/target/release/deps/libmemchr-0689decaaa1f50c7.rlib
new file mode 100644
index 0000000..9911866
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libmemchr-0689decaaa1f50c7.rlib differ
diff --git a/in_development/rust/osupdater/target/release/deps/libmemchr-0689decaaa1f50c7.rmeta b/in_development/rust/osupdater/target/release/deps/libmemchr-0689decaaa1f50c7.rmeta
new file mode 100644
index 0000000..320fb4c
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libmemchr-0689decaaa1f50c7.rmeta differ
diff --git a/in_development/rust/osupdater/target/release/deps/libminimal_lexical-69772a73ef162988.rlib b/in_development/rust/osupdater/target/release/deps/libminimal_lexical-69772a73ef162988.rlib
new file mode 100644
index 0000000..4f4e92c
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libminimal_lexical-69772a73ef162988.rlib differ
diff --git a/in_development/rust/osupdater/target/release/deps/libminimal_lexical-69772a73ef162988.rmeta b/in_development/rust/osupdater/target/release/deps/libminimal_lexical-69772a73ef162988.rmeta
new file mode 100644
index 0000000..97f38d6
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libminimal_lexical-69772a73ef162988.rmeta differ
diff --git a/in_development/rust/osupdater/target/release/deps/libnom-87d9e7ddd06c9f79.rlib b/in_development/rust/osupdater/target/release/deps/libnom-87d9e7ddd06c9f79.rlib
new file mode 100644
index 0000000..57bea37
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libnom-87d9e7ddd06c9f79.rlib differ
diff --git a/in_development/rust/osupdater/target/release/deps/libnom-87d9e7ddd06c9f79.rmeta b/in_development/rust/osupdater/target/release/deps/libnom-87d9e7ddd06c9f79.rmeta
new file mode 100644
index 0000000..3022784
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libnom-87d9e7ddd06c9f79.rmeta differ
diff --git a/in_development/rust/osupdater/target/release/deps/libproc_macro2-394f2e8df8028e6d.rlib b/in_development/rust/osupdater/target/release/deps/libproc_macro2-394f2e8df8028e6d.rlib
new file mode 100644
index 0000000..c55db96
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libproc_macro2-394f2e8df8028e6d.rlib differ
diff --git a/in_development/rust/osupdater/target/release/deps/libproc_macro2-394f2e8df8028e6d.rmeta b/in_development/rust/osupdater/target/release/deps/libproc_macro2-394f2e8df8028e6d.rmeta
new file mode 100644
index 0000000..600dd39
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libproc_macro2-394f2e8df8028e6d.rmeta differ
diff --git a/in_development/rust/osupdater/target/release/deps/libquote-b4b4d0da469019e9.rlib b/in_development/rust/osupdater/target/release/deps/libquote-b4b4d0da469019e9.rlib
new file mode 100644
index 0000000..0528f80
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libquote-b4b4d0da469019e9.rlib differ
diff --git a/in_development/rust/osupdater/target/release/deps/libquote-b4b4d0da469019e9.rmeta b/in_development/rust/osupdater/target/release/deps/libquote-b4b4d0da469019e9.rmeta
new file mode 100644
index 0000000..bdc3ce1
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libquote-b4b4d0da469019e9.rmeta differ
diff --git a/in_development/rust/osupdater/target/release/deps/libsyn-00782ea606045dec.rlib b/in_development/rust/osupdater/target/release/deps/libsyn-00782ea606045dec.rlib
new file mode 100644
index 0000000..6f7df44
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libsyn-00782ea606045dec.rlib differ
diff --git a/in_development/rust/osupdater/target/release/deps/libsyn-00782ea606045dec.rmeta b/in_development/rust/osupdater/target/release/deps/libsyn-00782ea606045dec.rmeta
new file mode 100644
index 0000000..664866a
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libsyn-00782ea606045dec.rmeta differ
diff --git a/in_development/rust/osupdater/target/release/deps/libunicode_ident-e20d05bcb61266f0.rlib b/in_development/rust/osupdater/target/release/deps/libunicode_ident-e20d05bcb61266f0.rlib
new file mode 100644
index 0000000..60e733a
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libunicode_ident-e20d05bcb61266f0.rlib differ
diff --git a/in_development/rust/osupdater/target/release/deps/libunicode_ident-e20d05bcb61266f0.rmeta b/in_development/rust/osupdater/target/release/deps/libunicode_ident-e20d05bcb61266f0.rmeta
new file mode 100644
index 0000000..19df84a
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/libunicode_ident-e20d05bcb61266f0.rmeta differ
diff --git a/in_development/rust/osupdater/target/release/deps/memchr-0689decaaa1f50c7.d b/in_development/rust/osupdater/target/release/deps/memchr-0689decaaa1f50c7.d
new file mode 100644
index 0000000..5e66dc3
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/memchr-0689decaaa1f50c7.d
@@ -0,0 +1,33 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libmemchr-0689decaaa1f50c7.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/packedpair/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/packedpair/default_rank.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/rabinkarp.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/shiftor.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/twoway.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/cow.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memmem/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memmem/searcher.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/vector.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libmemchr-0689decaaa1f50c7.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/packedpair/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/packedpair/default_rank.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/rabinkarp.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/shiftor.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/twoway.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/cow.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memmem/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memmem/searcher.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/vector.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/memchr-0689decaaa1f50c7.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/packedpair/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/packedpair/default_rank.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/rabinkarp.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/shiftor.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/twoway.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/cow.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memmem/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memmem/searcher.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/vector.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/lib.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/macros.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/memchr.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/packedpair/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/packedpair/default_rank.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/rabinkarp.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/shiftor.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/all/twoway.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/memchr.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/generic/packedpair.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/memchr.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/avx2/packedpair.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/memchr.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/sse2/packedpair.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/arch/x86_64/memchr.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/cow.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/ext.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memchr.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memmem/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/memmem/searcher.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/vector.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/minimal_lexical-69772a73ef162988.d b/in_development/rust/osupdater/target/release/deps/minimal_lexical-69772a73ef162988.d
new file mode 100644
index 0000000..dd15e22
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/minimal_lexical-69772a73ef162988.d
@@ -0,0 +1,25 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libminimal_lexical-69772a73ef162988.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libminimal_lexical-69772a73ef162988.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/minimal_lexical-69772a73ef162988.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bellerophon.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/bigint.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/extended_float.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/fpu.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/heapvec.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lemire.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/libm.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/mask.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/num.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/number.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/parse.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/rounding.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/slow.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/stackvec.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_bellerophon.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_lemire.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/table_small.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/nom-87d9e7ddd06c9f79.d b/in_development/rust/osupdater/target/release/deps/nom-87d9e7ddd06c9f79.d
new file mode 100644
index 0000000..c876434
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/nom-87d9e7ddd06c9f79.d
@@ -0,0 +1,28 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libnom-87d9e7ddd06c9f79.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libnom-87d9e7ddd06c9f79.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/nom-87d9e7ddd06c9f79.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/macros.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/error.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/branch/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/combinator/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/internal.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/multi/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/sequence/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/traits.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/complete.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bits/streaming.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/complete.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/bytes/streaming.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/complete.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/character/streaming.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/str.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/mod.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/complete.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/number/streaming.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/osupdater-3c55bac714fcf16d b/in_development/rust/osupdater/target/release/deps/osupdater-3c55bac714fcf16d
new file mode 100755
index 0000000..d0c2d7b
Binary files /dev/null and b/in_development/rust/osupdater/target/release/deps/osupdater-3c55bac714fcf16d differ
diff --git a/in_development/rust/osupdater/target/release/deps/osupdater-3c55bac714fcf16d.d b/in_development/rust/osupdater/target/release/deps/osupdater-3c55bac714fcf16d.d
new file mode 100644
index 0000000..38b907e
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/osupdater-3c55bac714fcf16d.d
@@ -0,0 +1,5 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/osupdater-3c55bac714fcf16d: src/main.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/osupdater-3c55bac714fcf16d.d: src/main.rs
+
+src/main.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/proc_macro2-394f2e8df8028e6d.d b/in_development/rust/osupdater/target/release/deps/proc_macro2-394f2e8df8028e6d.d
new file mode 100644
index 0000000..786a589
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/proc_macro2-394f2e8df8028e6d.d
@@ -0,0 +1,14 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libproc_macro2-394f2e8df8028e6d.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/marker.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/rcvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/detection.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/fallback.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/extra.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/wrapper.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libproc_macro2-394f2e8df8028e6d.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/marker.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/rcvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/detection.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/fallback.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/extra.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/wrapper.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/proc_macro2-394f2e8df8028e6d.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/marker.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/rcvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/detection.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/fallback.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/extra.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/wrapper.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/lib.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/marker.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/parse.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/rcvec.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/detection.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/fallback.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/extra.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.78/src/wrapper.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/quote-b4b4d0da469019e9.d b/in_development/rust/osupdater/target/release/deps/quote-b4b4d0da469019e9.d
new file mode 100644
index 0000000..43ffcb6
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/quote-b4b4d0da469019e9.d
@@ -0,0 +1,13 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libquote-b4b4d0da469019e9.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/format.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/ident_fragment.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/to_tokens.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/runtime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/spanned.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libquote-b4b4d0da469019e9.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/format.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/ident_fragment.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/to_tokens.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/runtime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/spanned.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/quote-b4b4d0da469019e9.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/format.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/ident_fragment.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/to_tokens.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/runtime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/spanned.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/lib.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/ext.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/format.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/ident_fragment.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/to_tokens.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/runtime.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.35/src/spanned.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/syn-00782ea606045dec.d b/in_development/rust/osupdater/target/release/deps/syn-00782ea606045dec.d
new file mode 100644
index 0000000..6da41ac
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/syn-00782ea606045dec.d
@@ -0,0 +1,45 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libsyn-00782ea606045dec.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/group.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/token.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ident.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/attr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/bigint.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/data.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/expr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/generics.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lifetime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lit.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/mac.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/derive.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/op.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ty.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/path.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/buffer.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/drops.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/punctuated.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse_quote.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse_macro_input.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/spanned.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/gen/../gen_helper.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/export.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/custom_keyword.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/custom_punctuation.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/sealed.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/span.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/thread.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lookahead.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/discouraged.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/verbatim.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/print.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/await.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/gen/clone.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libsyn-00782ea606045dec.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/group.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/token.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ident.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/attr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/bigint.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/data.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/expr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/generics.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lifetime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lit.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/mac.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/derive.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/op.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ty.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/path.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/buffer.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/drops.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/punctuated.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse_quote.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse_macro_input.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/spanned.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/gen/../gen_helper.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/export.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/custom_keyword.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/custom_punctuation.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/sealed.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/span.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/thread.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lookahead.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/discouraged.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/verbatim.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/print.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/await.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/gen/clone.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/syn-00782ea606045dec.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/group.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/token.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ident.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/attr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/bigint.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/data.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/expr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/generics.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lifetime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lit.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/mac.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/derive.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/op.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ty.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/path.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/buffer.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/drops.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/punctuated.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse_quote.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse_macro_input.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/spanned.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/gen/../gen_helper.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/export.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/custom_keyword.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/custom_punctuation.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/sealed.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/span.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/thread.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lookahead.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/discouraged.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/verbatim.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/print.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/await.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/gen/clone.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lib.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/macros.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/group.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/token.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ident.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/attr.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/bigint.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/data.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/expr.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/generics.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lifetime.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lit.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/mac.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/derive.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/op.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ty.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/path.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/buffer.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/drops.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/ext.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/punctuated.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse_quote.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse_macro_input.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/spanned.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/gen/../gen_helper.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/export.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/custom_keyword.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/custom_punctuation.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/sealed.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/span.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/thread.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lookahead.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/parse.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/discouraged.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/verbatim.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/print.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/error.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/await.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/gen/clone.rs:
diff --git a/in_development/rust/osupdater/target/release/deps/unicode_ident-e20d05bcb61266f0.d b/in_development/rust/osupdater/target/release/deps/unicode_ident-e20d05bcb61266f0.d
new file mode 100644
index 0000000..3e1d96d
--- /dev/null
+++ b/in_development/rust/osupdater/target/release/deps/unicode_ident-e20d05bcb61266f0.d
@@ -0,0 +1,8 @@
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libunicode_ident-e20d05bcb61266f0.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.12/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.12/src/tables.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/libunicode_ident-e20d05bcb61266f0.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.12/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.12/src/tables.rs
+
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/deps/unicode_ident-e20d05bcb61266f0.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.12/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.12/src/tables.rs
+
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.12/src/lib.rs:
+/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.12/src/tables.rs:
diff --git a/in_development/rust/osupdater/target/release/osupdater b/in_development/rust/osupdater/target/release/osupdater
index 4f68280..d0c2d7b 100755
Binary files a/in_development/rust/osupdater/target/release/osupdater and b/in_development/rust/osupdater/target/release/osupdater differ
diff --git a/in_development/rust/osupdater/target/release/osupdater.d b/in_development/rust/osupdater/target/release/osupdater.d
index d755618..8c9a135 100644
--- a/in_development/rust/osupdater/target/release/osupdater.d
+++ b/in_development/rust/osupdater/target/release/osupdater.d
@@ -1 +1 @@
-/home/andrew/workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/osupdater: /home/andrew/workspace/git_repos/osupdater/in_development/rust/osupdater/src/main.rs
+/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/release/osupdater: /home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/src/main.rs
diff --git a/osupdater b/osupdater
index 4f68280..d0c2d7b 100755
Binary files a/osupdater and b/osupdater differ