Work done on rust version
This commit is contained in:
parent
2075d3515f
commit
ebbbf18236
233 changed files with 708 additions and 116 deletions
88
in_development/rust/osupdater/Cargo.lock
generated
Normal file
88
in_development/rust/osupdater/Cargo.lock
generated
Normal 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.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7a858372ff14bab9b1b30ea504f2a4bc534582aee3e42ba2d41d2a7baba63d5d"
|
||||||
|
dependencies = [
|
||||||
|
"color-print-proc-macro",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "color-print-proc-macro"
|
||||||
|
version = "0.3.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "57e37866456a721d0a404439a1adae37a31be4e0055590d053dfe6981e05003f"
|
||||||
|
dependencies = [
|
||||||
|
"nom",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "memchr"
|
||||||
|
version = "2.7.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
||||||
|
|
||||||
|
[[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.78"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
|
||||||
|
dependencies = [
|
||||||
|
"unicode-ident",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "quote"
|
||||||
|
version = "1.0.35"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "syn"
|
||||||
|
version = "1.0.109"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
||||||
|
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
in_development/rust/osupdater/Cargo.toml
Normal file
9
in_development/rust/osupdater/Cargo.toml
Normal 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
in_development/rust/osupdater/src/main.rs
Normal file
208
in_development/rust/osupdater/src/main.rs
Normal 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!("osupdater : rust edition\n");
|
||||||
|
println!("This tool will locate any package managers on your system and run the update tool appropriate to it.\n");
|
||||||
|
println!("Looking for native package managers.");
|
||||||
|
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_yum = Command::new("which")
|
||||||
|
.arg("yum").stdout(Stdio::piped()).output().unwrap();
|
||||||
|
let mut yum_bin = String::from_utf8(find_yum.stdout).unwrap();
|
||||||
|
trim_newline(&mut yum_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
|
||||||
|
println!("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
|
||||||
|
println!("Checking 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
|
||||||
|
println!("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
|
||||||
|
println!("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();
|
||||||
|
}
|
||||||
|
|
||||||
|
// yum
|
||||||
|
println!("Checking for yum");
|
||||||
|
let path = Path::new(&yum_bin);
|
||||||
|
if path.exists(){
|
||||||
|
let mut cmd =
|
||||||
|
Command::new(&sudo_bin)
|
||||||
|
.arg(&yum_bin).arg("--refresh").arg("--skip-broken").arg("--nobest").arg("-y").arg("update")
|
||||||
|
.stdout(Stdio::inherit()).stderr(Stdio::inherit())
|
||||||
|
.spawn().unwrap();
|
||||||
|
let _output = cmd.wait();
|
||||||
|
}
|
||||||
|
|
||||||
|
// zypper
|
||||||
|
println!("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
|
||||||
|
println!("Checking application containers");
|
||||||
|
|
||||||
|
|
||||||
|
// flatpak
|
||||||
|
println!("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();
|
||||||
|
}
|
||||||
|
println!("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
|
||||||
|
println!("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();
|
||||||
|
}
|
||||||
|
println!("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
|
||||||
|
println!("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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
1
in_development/rust/osupdater/target/.rustc_info.json
Normal file
1
in_development/rust/osupdater/target/.rustc_info.json
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{"rustc_fingerprint":4441503469827874949,"outputs":{"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.71.1 (eb26296b5 2023-08-03) (Red Hat 1.71.1-1.el9)\nbinary: rustc\ncommit-hash: eb26296b556cef10fb713a38f3d16b9886080f26\ncommit-date: 2023-08-03\nhost: x86_64-unknown-linux-gnu\nrelease: 1.71.1\nLLVM version: 16.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":{}}
|
3
in_development/rust/osupdater/target/CACHEDIR.TAG
Normal file
3
in_development/rust/osupdater/target/CACHEDIR.TAG
Normal 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/
|
0
in_development/rust/osupdater/target/debug/.cargo-lock
Normal file
0
in_development/rust/osupdater/target/debug/.cargo-lock
Normal file
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
8a4c460e8f1f4a96
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[]","target":1649529747995039023,"profile":7767436220172716501,"path":1482003101201296346,"deps":[[6208786090756205864,"color_print_proc_macro",false,5175731149468673017]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/color-print-47216f1f42772c4e/dep-lib-color-print"}}],"rustflags":[],"metadata":14046565314639412879,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
f92301e90ee4d347
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[]","target":15526862357881787706,"profile":9347176690363218083,"path":7452602653615712394,"deps":[[6954241390595330609,"nom",false,14188692782006614653],[9618700007800273094,"quote",false,16874402957411551308],[16285336375947054926,"proc_macro2",false,16079512111551872865],[17143850428905299221,"syn",false,8396522586877321836]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/color-print-proc-macro-0f85a09bd754b70f/dep-lib-color-print-proc-macro"}}],"rustflags":[],"metadata":209986892890977964,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
b16d7369513e3e21
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[\"alloc\", \"std\"]","target":13876443730220172507,"profile":9347176690363218083,"path":801806671007159472,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-fb4c7a479e267649/dep-lib-memchr"}}],"rustflags":[],"metadata":7513296495906230968,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
9e8757b106f1ecfd
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[\"std\"]","target":1009644266440026082,"profile":9347176690363218083,"path":9900736054203991942,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/minimal-lexical-53e8f0026f34b0dc/dep-lib-minimal-lexical"}}],"rustflags":[],"metadata":2051824130325965549,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
7d3aa70ae95ce8c4
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[\"alloc\", \"default\", \"std\"]","target":1745534342555606081,"profile":9347176690363218083,"path":17763511593432912576,"deps":[[116639956507331903,"memchr",false,2395420571190128049],[10953957149292187054,"minimal_lexical",false,18297264397146883998]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nom-5f75ab7895c6074b/dep-lib-nom"}}],"rustflags":[],"metadata":9858338621379386705,"config":2202906307356721367,"compile_kind":0}
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[]","target":3155679793706155574,"profile":12909064940101087186,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/osupdater-54554b85bfe317d3/dep-bin-osupdater"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1,4 @@
|
||||||
|
{"message":"unresolved import `color_print`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":61,"byte_end":72,"line_start":3,"line_end":3,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":"use color_print::cprintln;","highlight_start":5,"highlight_end":16}],"label":"use of undeclared crate or module `color_print`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `color_print`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse color_print::cprintln;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared crate or module `color_print`\u001b[0m\n\n"}
|
||||||
|
{"message":"cannot determine resolution for the macro `cprintln`","code":null,"level":"error","spans":[{"file_name":"src/main.rs","byte_start":328,"byte_end":336,"line_start":17,"line_end":17,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" cprintln!(\"<bold>osupdater : rust edition\\n</bold>\");","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"import resolution is stuck, try simplifying macro imports","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: cannot determine resolution for the macro `cprintln`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:17:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m cprintln!(\"<bold>osupdater : rust edition\\n</bold>\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: import resolution is stuck, try simplifying macro imports\u001b[0m\n\n"}
|
||||||
|
{"message":"aborting due to 2 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 2 previous errors\u001b[0m\n\n"}
|
||||||
|
{"message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"}
|
|
@ -0,0 +1 @@
|
||||||
|
0b13698a4c98b9e1
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[]","target":3155679793706155574,"profile":12909064940101087186,"path":1684066648322511884,"deps":[[11048177716712752634,"color_print",false,10829502953246051466]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/osupdater-baa39ebe567a7912/dep-bin-osupdater"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
97d5a5eb34547ddd
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[\"default\", \"proc-macro\"]","target":427768481117760528,"profile":9347176690363218083,"path":16890373513329438754,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-454cdae89b496b36/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
4f65499046058a8c
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"","target":0,"profile":0,"path":0,"deps":[[16285336375947054926,"build_script_build",false,15960005240739452311]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-6c1fd63e000658c3/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
61ffa39212e725df
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[\"default\", \"proc-macro\"]","target":16714894217519287322,"profile":9347176690363218083,"path":5360015303756003254,"deps":[[10045147784146067611,"unicode_ident",false,3902257308497816144],[16285336375947054926,"build_script_build",false,10126912512722560335]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-e8f8c5270c93d135/dep-lib-proc-macro2"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
4c0851d915ec2dea
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[\"default\", \"proc-macro\"]","target":10824007166531090010,"profile":9347176690363218083,"path":18347439595570965489,"deps":[[16285336375947054926,"proc_macro2",false,16079512111551872865]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-a81cdf4afe42c20f/dep-lib-quote"}}],"rustflags":[],"metadata":2717943770976187624,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
6ce25d5bce708674
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[\"clone-impls\", \"default\", \"derive\", \"parsing\", \"printing\", \"proc-macro\", \"quote\"]","target":8516813339728780372,"profile":9347176690363218083,"path":12914230715315481689,"deps":[[9618700007800273094,"quote",false,16874402957411551308],[10045147784146067611,"unicode_ident",false,3902257308497816144],[16285336375947054926,"proc_macro2",false,16079512111551872865],[17143850428905299221,"build_script_build",false,18235272123777694891]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-3287f0b8999bb475/dep-lib-syn"}}],"rustflags":[],"metadata":6886477143387768027,"config":2202906307356721367,"compile_kind":0}
|
|
@ -0,0 +1 @@
|
||||||
|
38db54aafe4c5a41
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[\"clone-impls\", \"default\", \"derive\", \"parsing\", \"printing\", \"proc-macro\", \"quote\"]","target":2297296889237502566,"profile":9347176690363218083,"path":5656660771473710667,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-4bf76028346fe95d/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":6886477143387768027,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
ab3c5ac861b310fd
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"","target":0,"profile":0,"path":0,"deps":[[17143850428905299221,"build_script_build",false,4709161017032366904]],"local":[{"Precalculated":"1.0.109"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
502a2fd7589a2736
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":14381456976862984083,"features":"[]","target":7243519288898877878,"profile":9347176690363218083,"path":2775394328032971048,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-866dcaa5cdfba624/dep-lib-unicode-ident"}}],"rustflags":[],"metadata":1159190378059262574,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,5 @@
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/build/proc-macro2-454cdae89b496b36/build_script_build-454cdae89b496b36: /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/debug/build/proc-macro2-454cdae89b496b36/build_script_build-454cdae89b496b36.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:
|
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1,7 @@
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/build/proc-macro2-6c1fd63e000658c3/out/proc_macro2.rmeta: build/probe.rs
|
||||||
|
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/build/proc-macro2-6c1fd63e000658c3/out/proc_macro2.d: build/probe.rs
|
||||||
|
|
||||||
|
build/probe.rs:
|
||||||
|
|
||||||
|
# env-dep:RUSTC_BOOTSTRAP
|
|
@ -0,0 +1,3 @@
|
||||||
|
cargo:rerun-if-changed=build/probe.rs
|
||||||
|
cargo:rustc-cfg=wrap_proc_macro
|
||||||
|
cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP
|
|
@ -0,0 +1 @@
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/build/proc-macro2-6c1fd63e000658c3/out
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,5 @@
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/build/syn-4bf76028346fe95d/build_script_build-4bf76028346fe95d: /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/debug/build/syn-4bf76028346fe95d/build_script_build-4bf76028346fe95d.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:
|
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
cargo:rustc-cfg=syn_disable_nightly_tests
|
|
@ -0,0 +1 @@
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/build/syn-77975027e9e2f146/out
|
|
@ -0,0 +1,7 @@
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/deps/color_print-47216f1f42772c4e.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/debug/deps/libcolor_print-47216f1f42772c4e.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/debug/deps/color_print-47216f1f42772c4e.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:
|
|
@ -0,0 +1,18 @@
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/deps/libcolor_print_proc_macro-0f85a09bd754b70f.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/debug/deps/color_print_proc_macro-0f85a09bd754b70f.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:
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,33 @@
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/deps/memchr-fb4c7a479e267649.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/debug/deps/libmemchr-fb4c7a479e267649.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/debug/deps/memchr-fb4c7a479e267649.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:
|
|
@ -0,0 +1,25 @@
|
||||||
|
/home/andrew/Workspace/git_repos/osupdater/in_development/rust/osupdater/target/debug/deps/minimal_lexical-53e8f0026f34b0dc.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/debug/deps/libminimal_lexical-53e8f0026f34b0dc.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/debug/deps/minimal_lexical-53e8f0026f34b0dc.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:
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue