Dir cleanup

This commit is contained in:
Andrew Schott 2024-06-12 20:29:56 -05:00
parent 0b693e403c
commit f80d5f51ab
93 changed files with 754 additions and 4 deletions

2
.gitignore vendored
View file

@ -1,7 +1,5 @@
.gitignore.swp .gitignore.swp
osupdater
in_development/rust/osupdater/Cargo.lock in_development/rust/osupdater/Cargo.lock
in_development/rust/osupdater/debug/* in_development/rust/osupdater/debug/*

88
osupdater/Cargo.lock generated Normal file
View file

@ -0,0 +1,88 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "color-print"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ee543c60ff3888934877a5671f45494dd27ed4ba25c6670b9a7576b7ed7a8c0"
dependencies = [
"color-print-proc-macro",
]
[[package]]
name = "color-print-proc-macro"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77ff1a80c5f3cb1ca7c06ffdd71b6a6dd6d8f896c42141fbd43f50ed28dcdb93"
dependencies = [
"nom",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "memchr"
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "osupdater"
version = "0.1.0"
dependencies = [
"color-print",
]
[[package]]
name = "proc-macro2"
version = "1.0.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
version = "1.0.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
dependencies = [
"proc-macro2",
]
[[package]]
name = "syn"
version = "2.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"

9
osupdater/Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "osupdater"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
color-print = "0.3.5"

208
osupdater/src/main.rs Normal file
View file

@ -0,0 +1,208 @@
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!("<bold><rev><white>osupdater : rust edition</white></rev></bold>\n");
cprintln!("<bold><rev><white>This tool will locate any package managers on your system and run the update tool appropriate to it.</white></rev></bold>\n");
cprintln!("<bold><rev><white>Looking for native package managers.</white></rev></bold>\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_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();
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!("<bold><rev><magenta>Checking for apt</magenta></rev></bold>");
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!("<bold><rev><blue>Checking for dnf</blue></rev></bold>");
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();
}
// dnf5
cprintln!("<bold><rev><blue>Checking for dnf5</blue></rev></bold>");
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!("<bold><rev><cyan>Checking for pacman</cyan></rev></bold>");
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!("<bold><rev><white>Checking for urpmi</white></rev></bold>");
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!("<bold><rev><green>Checking for zypper</green></rev></bold>");
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!("<bold><rev><white>Checking application containers</white></rev></bold>");
// flatpak
cprintln!("<bold><rev><blue>Checking for user flatpak installs</blue></rev></bold>");
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!("<bold><rev><blue>Checking for system flatpak installs</blue></rev></bold>");
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!("<bold><rev><magenta>Checking for user snap installation</magenta></rev></bold>");
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!("<bold><rev><magenta>Checking for system snap installation</magenta></rev></bold>");
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!("<bold><rev><red>Updating Python user installation via pip-review</red></rev></bold>");
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();
}
}
}

View file

@ -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!("<bold><rev><white>osupdater : rust edition</white></rev></bold>\n");
cprintln!("<bold><rev><white>This tool will locate any package managers on your system and run the update tool appropriate to it.</white></rev></bold>\n");
cprintln!("<bold><rev><white>Looking for native package managers.</white></rev></bold>\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!("<bold><rev><magenta>Checking for apt</magenta></rev></bold>");
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!("<bold><rev><blue>hecking for dnf</blue></rev></bold>");
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!("<bold><rev><cyan>Checking for pacman</cyan></rev></bold>");
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!("<bold><rev><white>Checking for urpmi</white></rev></bold>");
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!("<bold><rev><green>Checking for zypper</green></rev></bold>");
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!("<bold><rev><white>Checking application containers</white></rev></bold>");
// flatpak
cprintln!("<bold><rev><blue>Checking for user flatpak installs</blue></rev></bold>");
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!("<bold><rev><blue>Checking for system flatpak installs</blue></rev></bold>");
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!("<bold><rev><magenta>Checking for user snap installation</magenta></rev></bold>");
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!("<bold><rev><magenta>Checking for system snap installation</magenta></rev></bold>");
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!("<bold><rev><red>Updating Python user installation via pip-review</red></rev></bold>");
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();
}
}
}

View file

@ -0,0 +1 @@
{"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":{}}

View file

@ -0,0 +1,3 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by cargo.
# For information about cache directory tags see https://bford.info/cachedir/

View file

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
cc449d21240be012

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"[]","target":1649529747995039023,"profile":14094339167972473758,"path":550194203882547516,"deps":[[3222093417525583837,"color_print_proc_macro",false,9439427396962683916]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/color-print-afce03216307b9e4/dep-lib-color-print"}}],"rustflags":[],"metadata":14046565314639412879,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"[]","target":15526862357881787706,"profile":1680656715729475402,"path":4882247213208630566,"deps":[[1404949221071535394,"syn",false,17982867022325774611],[6954241390595330609,"nom",false,1328267039077410007],[14268468010440576439,"quote",false,17141286554159441268],[18024560886749334364,"proc_macro2",false,4421871346268105323]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/color-print-proc-macro-81bc6d2860a2f103/dep-lib-color-print-proc-macro"}}],"rustflags":[],"metadata":209986892890977964,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
abdaa34e60dcabef

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"[\"alloc\", \"std\"]","target":13876443730220172507,"profile":1680656715729475402,"path":1344335906544194553,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-34b18715b9f2148c/dep-lib-memchr"}}],"rustflags":[],"metadata":7513296495906230968,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -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}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
d7a411a7d5f36e12

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"[\"alloc\", \"default\", \"std\"]","target":1745534342555606081,"profile":1680656715729475402,"path":17763511593432912576,"deps":[[10953957149292187054,"minimal_lexical",false,17649467169601332311],[15818844694086178958,"memchr",false,17270139502276631211]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/nom-b1e9b1275a512960/dep-lib-nom"}}],"rustflags":[],"metadata":9858338621379386705,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
67d7bea85ad294e9

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"[]","target":3155679793706155574,"profile":14094339167972473758,"path":1684066648322511884,"deps":[[13109348367562040179,"color_print",false,1360099337276572876]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/osupdater-db87aea20fb245dc/dep-bin-osupdater"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"","target":0,"profile":0,"path":0,"deps":[[18024560886749334364,"build_script_build",false,2277621301395131203]],"local":[{"RerunIfChanged":{"output":"release/build/proc-macro2-5758d8d74446bdab/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
6beac9b48fa45d3d

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"[\"default\", \"proc-macro\"]","target":2187471303096632034,"profile":1680656715729475402,"path":16281431462695871010,"deps":[[10045147784146067611,"unicode_ident",false,16456959812345648392],[18024560886749334364,"build_script_build",false,12156117226411907888]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-d4b31c8935be91a0/dep-lib-proc_macro2"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"[\"default\", \"proc-macro\"]","target":427768481117760528,"profile":1680656715729475402,"path":14636419031499795644,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-f2a2ba8d678d573c/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
7465da754d15e2ed

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"[\"default\", \"proc-macro\"]","target":10824007166531090010,"profile":1680656715729475402,"path":4559971258953805083,"deps":[[18024560886749334364,"proc_macro2",false,4421871346268105323]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/quote-3e5a3501363c5df8/dep-lib-quote"}}],"rustflags":[],"metadata":2717943770976187624,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
1379d08c47fa8ff9

View file

@ -0,0 +1 @@
{"rustc":135327596944711352,"features":"[\"clone-impls\", \"default\", \"derive\", \"parsing\", \"printing\", \"proc-macro\"]","target":9229941241798225847,"profile":1680656715729475402,"path":7941431313172371195,"deps":[[10045147784146067611,"unicode_ident",false,16456959812345648392],[14268468010440576439,"quote",false,17141286554159441268],[18024560886749334364,"proc_macro2",false,4421871346268105323]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-c1422649038448f2/dep-lib-syn"}}],"rustflags":[],"metadata":6886477143387768027,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -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}

View file

@ -0,0 +1 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1,7 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/build/proc-macro2-5758d8d74446bdab/out/libproc_macro2.rmeta: build/probe.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/build/proc-macro2-5758d8d74446bdab/out/proc_macro2.d: build/probe.rs
build/probe.rs:
# env-dep:RUSTC_BOOTSTRAP

View file

@ -0,0 +1,5 @@
cargo:rustc-cfg=no_literal_byte_character
cargo:rustc-cfg=no_literal_c_string
cargo:rerun-if-changed=build/probe.rs
cargo:rustc-cfg=wrap_proc_macro
cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP

View file

@ -0,0 +1 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/build/proc-macro2-5758d8d74446bdab/out

View file

@ -0,0 +1,5 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/build/proc-macro2-f2a2ba8d678d573c/build_script_build-f2a2ba8d678d573c: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/build.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/build/proc-macro2-f2a2ba8d678d573c/build_script_build-f2a2ba8d678d573c.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/build.rs
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/build.rs:

View file

@ -0,0 +1,7 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libcolor_print-afce03216307b9e4.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-0.3.6/src/lib.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libcolor_print-afce03216307b9e4.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-0.3.6/src/lib.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/color_print-afce03216307b9e4.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-0.3.6/src/lib.rs
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-0.3.6/src/lib.rs:

View file

@ -0,0 +1,17 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libcolor_print_proc_macro-81bc6d2860a2f103.so: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/util.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/ansi.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/ansi_constants.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/color_context.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/format_args/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/format_args/format_arg.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/types.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/color_tag.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/util.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/untagged.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/color_print_proc_macro-81bc6d2860a2f103.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/util.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/ansi.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/ansi_constants.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/color_context.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/format_args/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/format_args/format_arg.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/types.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/color_tag.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/util.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/untagged.rs
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/lib.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/util.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/ansi.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/ansi_constants.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/color_context.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/error.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/format_args/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/format_args/format_arg.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/types.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/color_tag.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/parse/util.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/color-print-proc-macro-0.3.6/src/untagged.rs:

View file

@ -0,0 +1,33 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libmemchr-34b18715b9f2148c.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/packedpair/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/packedpair/default_rank.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/rabinkarp.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/shiftor.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/twoway.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/cow.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memmem/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memmem/searcher.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/vector.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libmemchr-34b18715b9f2148c.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/packedpair/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/packedpair/default_rank.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/rabinkarp.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/shiftor.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/twoway.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/cow.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memmem/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memmem/searcher.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/vector.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/memchr-34b18715b9f2148c.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/packedpair/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/packedpair/default_rank.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/rabinkarp.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/shiftor.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/twoway.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/packedpair.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/cow.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memchr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memmem/mod.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memmem/searcher.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/vector.rs
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/lib.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/macros.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/memchr.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/packedpair/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/packedpair/default_rank.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/rabinkarp.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/shiftor.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/all/twoway.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/memchr.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/generic/packedpair.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/memchr.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/avx2/packedpair.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/memchr.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/sse2/packedpair.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/arch/x86_64/memchr.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/cow.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/ext.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memchr.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memmem/mod.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/memmem/searcher.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.2/src/vector.rs:

View file

@ -0,0 +1,25 @@
/home/andrew/Workspace/git_repos/osupdater/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/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/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:

View file

@ -0,0 +1,28 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libnom-b1e9b1275a512960.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/osupdater/target/release/deps/libnom-b1e9b1275a512960.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/osupdater/target/release/deps/nom-b1e9b1275a512960.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:

Binary file not shown.

View file

@ -0,0 +1,5 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/osupdater-db87aea20fb245dc: src/main.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/osupdater-db87aea20fb245dc.d: src/main.rs
src/main.rs:

View file

@ -0,0 +1,14 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libproc_macro2-d4b31c8935be91a0.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/marker.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/rcvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/detection.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/fallback.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/extra.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/wrapper.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libproc_macro2-d4b31c8935be91a0.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/marker.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/rcvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/detection.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/fallback.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/extra.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/wrapper.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/proc_macro2-d4b31c8935be91a0.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/marker.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/rcvec.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/detection.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/fallback.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/extra.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/wrapper.rs
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/lib.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/marker.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/parse.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/rcvec.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/detection.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/fallback.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/extra.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.85/src/wrapper.rs:

View file

@ -0,0 +1,13 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libquote-3e5a3501363c5df8.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/format.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/ident_fragment.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/to_tokens.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/runtime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/spanned.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libquote-3e5a3501363c5df8.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/format.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/ident_fragment.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/to_tokens.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/runtime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/spanned.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/quote-3e5a3501363c5df8.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/format.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/ident_fragment.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/to_tokens.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/runtime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/spanned.rs
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/lib.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/ext.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/format.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/ident_fragment.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/to_tokens.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/runtime.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/spanned.rs:

View file

@ -0,0 +1,47 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libsyn-c1422649038448f2.rmeta: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/group.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/token.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/attr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/bigint.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/buffer.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/classify.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/custom_keyword.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/custom_punctuation.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/data.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/derive.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/drops.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/expr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/generics.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ident.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lifetime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lit.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lookahead.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/mac.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/meta.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/op.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/discouraged.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse_macro_input.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse_quote.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/path.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/precedence.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/print.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/punctuated.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/restriction.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/sealed.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/span.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/spanned.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/thread.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ty.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/verbatim.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/export.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/gen/clone.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/libsyn-c1422649038448f2.rlib: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/group.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/token.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/attr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/bigint.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/buffer.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/classify.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/custom_keyword.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/custom_punctuation.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/data.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/derive.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/drops.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/expr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/generics.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ident.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lifetime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lit.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lookahead.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/mac.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/meta.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/op.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/discouraged.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse_macro_input.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse_quote.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/path.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/precedence.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/print.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/punctuated.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/restriction.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/sealed.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/span.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/spanned.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/thread.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ty.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/verbatim.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/export.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/gen/clone.rs
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/deps/syn-c1422649038448f2.d: /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lib.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/macros.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/group.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/token.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/attr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/bigint.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/buffer.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/classify.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/custom_keyword.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/custom_punctuation.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/data.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/derive.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/drops.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/error.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/expr.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ext.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/generics.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ident.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lifetime.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lit.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lookahead.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/mac.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/meta.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/op.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/discouraged.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse_macro_input.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse_quote.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/path.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/precedence.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/print.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/punctuated.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/restriction.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/sealed.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/span.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/spanned.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/thread.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ty.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/verbatim.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/export.rs /home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/gen/clone.rs
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lib.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/macros.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/group.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/token.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/attr.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/bigint.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/buffer.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/classify.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/custom_keyword.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/custom_punctuation.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/data.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/derive.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/drops.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/error.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/expr.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ext.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/generics.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ident.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lifetime.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lit.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/lookahead.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/mac.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/meta.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/op.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/discouraged.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse_macro_input.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/parse_quote.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/path.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/precedence.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/print.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/punctuated.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/restriction.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/sealed.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/span.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/spanned.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/thread.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/ty.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/verbatim.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/export.rs:
/home/andrew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.66/src/gen/clone.rs:

View file

@ -0,0 +1,8 @@
/home/andrew/Workspace/git_repos/osupdater/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/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/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:

Binary file not shown.

View file

@ -0,0 +1 @@
/home/andrew/Workspace/git_repos/osupdater/osupdater/target/release/osupdater: /home/andrew/Workspace/git_repos/osupdater/osupdater/src/main.rs

View file

@ -5,6 +5,6 @@ echo -e "Entering build directory\n"
cd osupdater/ cd osupdater/
echo -e "Building osupdater\n" echo -e "Building osupdater\n"
cargo build -r cargo build -r
echo -e "Copying binary to git root\n" #echo -e "Copying binary to git root\n"
cp target/release/osupdater ../osupdater #cp target/release/osupdater ../osupdater