diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index bc78712..cfcfd21 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -15,3 +15,9 @@ jobs: run: | ls ${{ gitea.workspace }} - run: source $HOME/.cargo/env && make + - run: make build + - run: make run + - run: make build_risspam + - run: make run_risspam + - run: make benchmark + - run: make publish diff --git a/12bitfloat_rust/isspam_v4.rs b/12bitfloat_rust/isspam_v4.rs new file mode 100644 index 0000000..ad6bc58 --- /dev/null +++ b/12bitfloat_rust/isspam_v4.rs @@ -0,0 +1,157 @@ +#![feature(let_chains)] + +use rayon::prelude::*; +//use rayon::prelude::*; +use std::{env, fs}; + +fn clean_content(content: &str) -> String { + let alloed_ichars = "01234567891abcdefghijklmnopqrstuvwxyz \n.,!?"; + + let clean_content = content.chars() + .filter(|&c| alloed_ichars.contains(c)) + .collect::(); + + clean_content +} + +fn get_sentences(content: &str) -> usize { + let sentences = content.split('.') + .map(|s| s.trim_start()) // Remove leading whitespace + .count(); + +// // Remove last "sentence" if didn't end with a dot +// if let Some(last) = sentences.last() && !last.ends_with('.') { +// sentences.pop(); +// } + + sentences +} + +fn get_words(content: &str, words: &mut usize, caps: &mut usize, fw: &mut usize) { + fn check_forbidden(w: &str) -> bool { + FORBIDDEN_WORDS.iter() + .find(|fw| str::eq_ignore_ascii_case(w, fw)) + .is_some() + } + + for word in content.split_whitespace() { + *words += 1; + + if is_fully_capitalized_word(word) { + *caps += 1; + } + if check_forbidden(word) { + *fw += 1; + } + } +} + +fn is_fully_capitalized_word(word: &str) -> bool { + word.chars() + .all(|c| !c.is_ascii_alphanumeric() || c.is_ascii_uppercase()) +} + +//fn get_capitalized_words(content: &str) -> usize { +// let sentences = get_sentences(content); +//// let mut cap_words = vec![]; +// let mut count = 0; +// +// for sentence in sentences { +// // Always skip the first word since sentences start with +// for word in get_words(sentence).skip(1) { +// if is_fully_capitalized_word(word) { +// count += 1; +// } +// } +// } +// +// count +//} + +fn get_numbers(clean_content: &str) -> usize { + clean_content.split(|c: char| !c.is_ascii_digit()) + .count() +} + +//fn get_forbidden_words(content: &str) -> usize { +// fn check_forbidden(w: &str) -> bool { +// FORBIDDEN_WORDS.iter() +// .find(|fw| str::eq_ignore_ascii_case(w, fw)) +// .is_some() +// } +// +// get_words(content) +// .filter(|w| check_forbidden(w)) +// .collect() +//} + +fn analyze(data: &str) { + let clean_data = clean_content(data); +// drop(clean_data); // You aren't actually using clean_data :O + + // All capitalized words + let mut words = 0; + let mut fw = 0; + let mut cap_words = 0; + get_words(&clean_data, &mut words, &mut fw, &mut cap_words); + + println!("All capitalized words: {}", cap_words); + + // All sentences + let sentences = get_sentences(data); + println!("Sentences: {}", sentences); + + // All words + println!("Words: {}", words); + + // Numbers + let numbers = get_numbers(&clean_data); + println!("Numbers: {}", numbers); + + // Forbidden words + println!("Forbidden words: {}", fw); + + if sentences > 0 { + let word_count_per_sentence = words / sentences; + println!("Word count per sentence: {}", word_count_per_sentence); + } +} + +fn main() { + // Read in files from args + let mut files = Vec::with_capacity(env::args().len()); + let mut do_parallel = false; + + for arg in env::args().skip(1) { // skip program arg + if arg == "-p" { + do_parallel = true; + } else { + files.push(arg); + } + } + + // Do the work + let work = |file| { + let Ok(text) = fs::read_to_string(&file) else { + eprintln!("{file} isn't a valid file or couldn't be read"); + return; + }; + + analyze(&text); + }; + + if !do_parallel { + files.iter().for_each(work); + } else { + files.par_iter().for_each(work) + } +} + +static FORBIDDEN_WORDS: &'static [&'static str] = &[ + "recovery", "techie", "http", "https", "digital", "hack", "::", "//", "com", + "@", "crypto", "bitcoin", "wallet", "hacker", "welcome", "whatsapp", "email", "cryptocurrency", + "stolen", "freeze", "quick", "crucial", "tracing", "scammers", "expers", "hire", "century", + "transaction", "essential", "managing", "contact", "contacting", "understanding", "assets", "funds" +]; + + diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/dep-lib-crossbeam_deque b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/dep-lib-crossbeam_deque new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/dep-lib-crossbeam_deque differ diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/invoked.timestamp b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/lib-crossbeam_deque b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/lib-crossbeam_deque new file mode 100644 index 0000000..baadbfa --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/lib-crossbeam_deque @@ -0,0 +1 @@ +aa8b99e5bbcdf5c6 \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/lib-crossbeam_deque.json b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/lib-crossbeam_deque.json new file mode 100644 index 0000000..c54f1cb --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/lib-crossbeam_deque.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":15878351248853952023,"profile":8864407476722025557,"path":11272947995469734555,"deps":[[13029015263761501439,"crossbeam_utils",false,14067491263864578968],[17638357056475407756,"crossbeam_epoch",false,13299227649126765713]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-deque-2dda0e8c8adaa09c/dep-lib-crossbeam_deque","checksum":false}}],"rustflags":[],"metadata":14304628380895324452,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/dep-lib-crossbeam_epoch b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/dep-lib-crossbeam_epoch new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/dep-lib-crossbeam_epoch differ diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/invoked.timestamp b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/lib-crossbeam_epoch b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/lib-crossbeam_epoch new file mode 100644 index 0000000..6e07e93 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/lib-crossbeam_epoch @@ -0,0 +1 @@ +911441a5155990b8 \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/lib-crossbeam_epoch.json b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/lib-crossbeam_epoch.json new file mode 100644 index 0000000..3acc394 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/lib-crossbeam_epoch.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"loom\", \"loom-crate\", \"nightly\", \"std\"]","target":3011025219128477647,"profile":8864407476722025557,"path":2144046578742159444,"deps":[[13029015263761501439,"crossbeam_utils",false,14067491263864578968]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-epoch-5b20c0a0587fa03b/dep-lib-crossbeam_epoch","checksum":false}}],"rustflags":[],"metadata":8562320424510714295,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/dep-lib-crossbeam_utils b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/dep-lib-crossbeam_utils new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/dep-lib-crossbeam_utils differ diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/invoked.timestamp b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/lib-crossbeam_utils b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/lib-crossbeam_utils new file mode 100644 index 0000000..299a6a4 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/lib-crossbeam_utils @@ -0,0 +1 @@ +98238f8fc5c439c3 \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/lib-crossbeam_utils.json b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/lib-crossbeam_utils.json new file mode 100644 index 0000000..f3a01b5 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-76d68688d9a22164/lib-crossbeam_utils.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":17763872635700314276,"profile":17448234865441663590,"path":271604838124260648,"deps":[[13029015263761501439,"build_script_build",false,6106247131210478683]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-utils-76d68688d9a22164/dep-lib-crossbeam_utils","checksum":false}}],"rustflags":[],"metadata":1609393243086812936,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/build-script-build-script-build b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/build-script-build-script-build new file mode 100644 index 0000000..32cd953 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/build-script-build-script-build @@ -0,0 +1 @@ +d3e72901f55af43e \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/build-script-build-script-build.json b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/build-script-build-script-build.json new file mode 100644 index 0000000..5ea5910 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":9652763411108993936,"profile":9250313928772495090,"path":4917352724713626466,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-utils-89a436b202ce1536/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"metadata":1609393243086812936,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/dep-build-script-build-script-build b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/dep-build-script-build-script-build differ diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/invoked.timestamp b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-89a436b202ce1536/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-9c757eb71ba2d0d5/run-build-script-build-script-build b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-9c757eb71ba2d0d5/run-build-script-build-script-build new file mode 100644 index 0000000..6a19037 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-9c757eb71ba2d0d5/run-build-script-build-script-build @@ -0,0 +1 @@ +5b748cde69bfbd54 \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-9c757eb71ba2d0d5/run-build-script-build-script-build.json b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-9c757eb71ba2d0d5/run-build-script-build-script-build.json new file mode 100644 index 0000000..030971d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/crossbeam-utils-9c757eb71ba2d0d5/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13029015263761501439,"build_script_build",false,4536350733001942995]],"local":[{"RerunIfChanged":{"output":"release/build/crossbeam-utils-9c757eb71ba2d0d5/output","paths":["no_atomic.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/dep-lib-either b/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/dep-lib-either new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/dep-lib-either differ diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/invoked.timestamp b/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/lib-either b/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/lib-either new file mode 100644 index 0000000..20a9430 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/lib-either @@ -0,0 +1 @@ +07dcd7ce291bf7a4 \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/lib-either.json b/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/lib-either.json new file mode 100644 index 0000000..14b80aa --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/either-7c57e4087620802a/lib-either.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"[]","declared_features":"[\"default\", \"serde\", \"use_std\"]","target":10829531579163655734,"profile":8864407476722025557,"path":1883079978833514601,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/either-7c57e4087620802a/dep-lib-either","checksum":false}}],"rustflags":[],"metadata":14516623572814205243,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-2a0ed97c4320c1dc/run-build-script-build-script-build b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-2a0ed97c4320c1dc/run-build-script-build-script-build new file mode 100644 index 0000000..f16241c --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-2a0ed97c4320c1dc/run-build-script-build-script-build @@ -0,0 +1 @@ +3249d3b5edbe74c6 \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-2a0ed97c4320c1dc/run-build-script-build-script-build.json b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-2a0ed97c4320c1dc/run-build-script-build-script-build.json new file mode 100644 index 0000000..a4085fd --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-2a0ed97c4320c1dc/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10618402922884942723,"build_script_build",false,17218091529197559880]],"local":[{"RerunIfChanged":{"output":"release/build/rayon-core-2a0ed97c4320c1dc/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/build-script-build-script-build b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/build-script-build-script-build new file mode 100644 index 0000000..763d93c --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/build-script-build-script-build @@ -0,0 +1 @@ +48a0fb3b05f3f2ee \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/build-script-build-script-build.json b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/build-script-build-script-build.json new file mode 100644 index 0000000..3559435 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"[]","declared_features":"[\"web_spin_lock\"]","target":9652763411108993936,"profile":3742506382397567361,"path":6127636580977020660,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rayon-core-412fdfc3b69ba62f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"metadata":14590378261418540923,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/dep-build-script-build-script-build b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/dep-build-script-build-script-build differ diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/invoked.timestamp b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-412fdfc3b69ba62f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/dep-lib-rayon_core b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/dep-lib-rayon_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/dep-lib-rayon_core differ diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/invoked.timestamp b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/lib-rayon_core b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/lib-rayon_core new file mode 100644 index 0000000..39103ce --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/lib-rayon_core @@ -0,0 +1 @@ +4a12c587935311f3 \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/lib-rayon_core.json b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/lib-rayon_core.json new file mode 100644 index 0000000..3281922 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-core-8cfcbcc105dcd0da/lib-rayon_core.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"[]","declared_features":"[\"web_spin_lock\"]","target":759009288358699041,"profile":8864407476722025557,"path":8102980474510446164,"deps":[[10618402922884942723,"build_script_build",false,14300264644975216946],[13029015263761501439,"crossbeam_utils",false,14067491263864578968],[17516414546981198098,"crossbeam_deque",false,14336591195698465706]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rayon-core-8cfcbcc105dcd0da/dep-lib-rayon_core","checksum":false}}],"rustflags":[],"metadata":14590378261418540923,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/dep-lib-rayon b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/dep-lib-rayon new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/dep-lib-rayon differ diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/invoked.timestamp b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/lib-rayon b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/lib-rayon new file mode 100644 index 0000000..7dc6fe8 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/lib-rayon @@ -0,0 +1 @@ +ea1a13d9ce2f3ca8 \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/lib-rayon.json b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/lib-rayon.json new file mode 100644 index 0000000..94a21e3 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/rayon-dc977fc3a8b42ed5/lib-rayon.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"[]","declared_features":"[\"web_spin_lock\"]","target":15340428944421145304,"profile":8864407476722025557,"path":7990184197366143812,"deps":[[7459069637002492900,"either",false,11886999607845575687],[10618402922884942723,"rayon_core",false,17514872318923706954]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rayon-dc977fc3a8b42ed5/dep-lib-rayon","checksum":false}}],"rustflags":[],"metadata":16007375514346065096,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/bin-risspam b/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/bin-risspam new file mode 100644 index 0000000..6bb42c2 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/bin-risspam @@ -0,0 +1 @@ +20f0064d3531f195 \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/bin-risspam.json b/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/bin-risspam.json new file mode 100644 index 0000000..89cf7d3 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/bin-risspam.json @@ -0,0 +1 @@ +{"rustc":7959095874983568062,"features":"[]","declared_features":"[]","target":10519780086885261595,"profile":8294345896200518926,"path":10602529704205407992,"deps":[[17775862536196513609,"rayon",false,12122616862426209002]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/risspam-d4d23922c0d57469/dep-bin-risspam","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/dep-bin-risspam b/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/dep-bin-risspam new file mode 100644 index 0000000..5c54f74 Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/dep-bin-risspam differ diff --git a/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/invoked.timestamp b/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/.fingerprint/risspam-d4d23922c0d57469/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build-script-build b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build-script-build new file mode 100755 index 0000000..7d3ac1e Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build-script-build differ diff --git a/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build_script_build-89a436b202ce1536 b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build_script_build-89a436b202ce1536 new file mode 100755 index 0000000..7d3ac1e Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build_script_build-89a436b202ce1536 differ diff --git a/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build_script_build-89a436b202ce1536.d b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build_script_build-89a436b202ce1536.d new file mode 100644 index 0000000..02daae7 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build_script_build-89a436b202ce1536.d @@ -0,0 +1,9 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build_script_build-89a436b202ce1536: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/build.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/no_atomic.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/build-common.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-89a436b202ce1536/build_script_build-89a436b202ce1536.d: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/build.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/no_atomic.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/build-common.rs + +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/build.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/no_atomic.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/build-common.rs: + +# env-dep:CARGO_PKG_NAME=crossbeam-utils diff --git a/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/invoked.timestamp b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/output b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/output new file mode 100644 index 0000000..d0bad9f --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=no_atomic.rs +cargo:rustc-check-cfg=cfg(crossbeam_no_atomic,crossbeam_sanitize_thread) diff --git a/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/root-output b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/root-output new file mode 100644 index 0000000..22e4897 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/root-output @@ -0,0 +1 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/out \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/stderr b/12bitfloat_rust/risspam/target/release/build/crossbeam-utils-9c757eb71ba2d0d5/stderr new file mode 100644 index 0000000..e69de29 diff --git a/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/invoked.timestamp b/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/output b/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/root-output b/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/root-output new file mode 100644 index 0000000..6388e05 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/root-output @@ -0,0 +1 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/out \ No newline at end of file diff --git a/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/stderr b/12bitfloat_rust/risspam/target/release/build/rayon-core-2a0ed97c4320c1dc/stderr new file mode 100644 index 0000000..e69de29 diff --git a/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build-script-build b/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build-script-build new file mode 100755 index 0000000..76ac1cf Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build-script-build differ diff --git a/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build_script_build-412fdfc3b69ba62f b/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build_script_build-412fdfc3b69ba62f new file mode 100755 index 0000000..76ac1cf Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build_script_build-412fdfc3b69ba62f differ diff --git a/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build_script_build-412fdfc3b69ba62f.d b/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build_script_build-412fdfc3b69ba62f.d new file mode 100644 index 0000000..c6207e8 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build_script_build-412fdfc3b69ba62f.d @@ -0,0 +1,5 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build_script_build-412fdfc3b69ba62f: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/build.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/build/rayon-core-412fdfc3b69ba62f/build_script_build-412fdfc3b69ba62f.d: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/build.rs + +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/build.rs: diff --git a/12bitfloat_rust/risspam/target/release/deps/crossbeam_deque-2dda0e8c8adaa09c.d b/12bitfloat_rust/risspam/target/release/deps/crossbeam_deque-2dda0e8c8adaa09c.d new file mode 100644 index 0000000..3b58581 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/deps/crossbeam_deque-2dda0e8c8adaa09c.d @@ -0,0 +1,8 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_deque-2dda0e8c8adaa09c.rmeta: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/deque.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_deque-2dda0e8c8adaa09c.rlib: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/deque.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/crossbeam_deque-2dda0e8c8adaa09c.d: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/deque.rs + +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/lib.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/deque.rs: diff --git a/12bitfloat_rust/risspam/target/release/deps/crossbeam_epoch-5b20c0a0587fa03b.d b/12bitfloat_rust/risspam/target/release/deps/crossbeam_epoch-5b20c0a0587fa03b.d new file mode 100644 index 0000000..0269fb6 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/deps/crossbeam_epoch-5b20c0a0587fa03b.d @@ -0,0 +1,18 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_epoch-5b20c0a0587fa03b.rmeta: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/atomic.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/collector.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/deferred.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/epoch.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/guard.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/internal.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/list.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/once_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/queue.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/default.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_epoch-5b20c0a0587fa03b.rlib: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/atomic.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/collector.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/deferred.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/epoch.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/guard.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/internal.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/list.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/once_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/queue.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/default.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/crossbeam_epoch-5b20c0a0587fa03b.d: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/atomic.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/collector.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/deferred.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/epoch.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/guard.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/internal.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/list.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/once_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/queue.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/default.rs + +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/lib.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/atomic.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/collector.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/deferred.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/epoch.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/guard.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/internal.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/list.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/once_lock.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/sync/queue.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/default.rs: diff --git a/12bitfloat_rust/risspam/target/release/deps/crossbeam_utils-76d68688d9a22164.d b/12bitfloat_rust/risspam/target/release/deps/crossbeam_utils-76d68688d9a22164.d new file mode 100644 index 0000000..c787b55 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/deps/crossbeam_utils-76d68688d9a22164.d @@ -0,0 +1,19 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_utils-76d68688d9a22164.rmeta: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/seq_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/atomic_cell.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/consume.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/cache_padded.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/backoff.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/once_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/parker.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/sharded_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/wait_group.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/thread.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_utils-76d68688d9a22164.rlib: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/seq_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/atomic_cell.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/consume.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/cache_padded.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/backoff.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/once_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/parker.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/sharded_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/wait_group.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/thread.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/crossbeam_utils-76d68688d9a22164.d: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/seq_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/atomic_cell.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/consume.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/cache_padded.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/backoff.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/once_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/parker.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/sharded_lock.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/wait_group.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/thread.rs + +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/lib.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/seq_lock.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/atomic_cell.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/atomic/consume.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/cache_padded.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/backoff.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/once_lock.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/parker.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/sharded_lock.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/sync/wait_group.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.20/src/thread.rs: diff --git a/12bitfloat_rust/risspam/target/release/deps/either-7c57e4087620802a.d b/12bitfloat_rust/risspam/target/release/deps/either-7c57e4087620802a.d new file mode 100644 index 0000000..28582e1 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/deps/either-7c57e4087620802a.d @@ -0,0 +1,9 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/libeither-7c57e4087620802a.rmeta: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/iterator.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/into_either.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/libeither-7c57e4087620802a.rlib: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/iterator.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/into_either.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/either-7c57e4087620802a.d: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/iterator.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/into_either.rs + +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/lib.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/iterator.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.13.0/src/into_either.rs: diff --git a/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_deque-2dda0e8c8adaa09c.rlib b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_deque-2dda0e8c8adaa09c.rlib new file mode 100644 index 0000000..41c6b97 Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_deque-2dda0e8c8adaa09c.rlib differ diff --git a/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_deque-2dda0e8c8adaa09c.rmeta b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_deque-2dda0e8c8adaa09c.rmeta new file mode 100644 index 0000000..acfb31e Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_deque-2dda0e8c8adaa09c.rmeta differ diff --git a/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_epoch-5b20c0a0587fa03b.rlib b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_epoch-5b20c0a0587fa03b.rlib new file mode 100644 index 0000000..8b348bb Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_epoch-5b20c0a0587fa03b.rlib differ diff --git a/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_epoch-5b20c0a0587fa03b.rmeta b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_epoch-5b20c0a0587fa03b.rmeta new file mode 100644 index 0000000..da1c895 Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_epoch-5b20c0a0587fa03b.rmeta differ diff --git a/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_utils-76d68688d9a22164.rlib b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_utils-76d68688d9a22164.rlib new file mode 100644 index 0000000..fb2f31e Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_utils-76d68688d9a22164.rlib differ diff --git a/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_utils-76d68688d9a22164.rmeta b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_utils-76d68688d9a22164.rmeta new file mode 100644 index 0000000..31fdfd3 Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/libcrossbeam_utils-76d68688d9a22164.rmeta differ diff --git a/12bitfloat_rust/risspam/target/release/deps/libeither-7c57e4087620802a.rlib b/12bitfloat_rust/risspam/target/release/deps/libeither-7c57e4087620802a.rlib new file mode 100644 index 0000000..6d62294 Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/libeither-7c57e4087620802a.rlib differ diff --git a/12bitfloat_rust/risspam/target/release/deps/libeither-7c57e4087620802a.rmeta b/12bitfloat_rust/risspam/target/release/deps/libeither-7c57e4087620802a.rmeta new file mode 100644 index 0000000..62f1c32 Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/libeither-7c57e4087620802a.rmeta differ diff --git a/12bitfloat_rust/risspam/target/release/deps/librayon-dc977fc3a8b42ed5.rlib b/12bitfloat_rust/risspam/target/release/deps/librayon-dc977fc3a8b42ed5.rlib new file mode 100644 index 0000000..0e71976 Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/librayon-dc977fc3a8b42ed5.rlib differ diff --git a/12bitfloat_rust/risspam/target/release/deps/librayon-dc977fc3a8b42ed5.rmeta b/12bitfloat_rust/risspam/target/release/deps/librayon-dc977fc3a8b42ed5.rmeta new file mode 100644 index 0000000..5c0af67 Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/librayon-dc977fc3a8b42ed5.rmeta differ diff --git a/12bitfloat_rust/risspam/target/release/deps/librayon_core-8cfcbcc105dcd0da.rlib b/12bitfloat_rust/risspam/target/release/deps/librayon_core-8cfcbcc105dcd0da.rlib new file mode 100644 index 0000000..8960fae Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/librayon_core-8cfcbcc105dcd0da.rlib differ diff --git a/12bitfloat_rust/risspam/target/release/deps/librayon_core-8cfcbcc105dcd0da.rmeta b/12bitfloat_rust/risspam/target/release/deps/librayon_core-8cfcbcc105dcd0da.rmeta new file mode 100644 index 0000000..fcfd288 Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/librayon_core-8cfcbcc105dcd0da.rmeta differ diff --git a/12bitfloat_rust/risspam/target/release/deps/rayon-dc977fc3a8b42ed5.d b/12bitfloat_rust/risspam/target/release/deps/rayon-dc977fc3a8b42ed5.d new file mode 100644 index 0000000..ac9f248 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/deps/rayon-dc977fc3a8b42ed5.d @@ -0,0 +1,104 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/librayon-dc977fc3a8b42ed5.rmeta: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/delegate.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/private.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/split_producer.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/array.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/binary_heap.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/btree_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/btree_set.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/hash_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/hash_set.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/linked_list.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/vec_deque.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/plumbing/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/blocks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/chain.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/chunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/cloned.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/consumer.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/copied.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/empty.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/enumerate.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/extend.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/filter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/filter_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/find.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/find_first_last/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flat_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flat_map_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flatten.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flatten_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold_chunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold_chunks_with.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/for_each.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/from_par_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/inspect.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/interleave.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/interleave_shortest.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/intersperse.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/len.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/map_with.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/multizip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/noop.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/once.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/panic_fuse.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/par_bridge.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/positions.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/product.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/reduce.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/repeat.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/rev.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip_any.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip_any_while.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/splitter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/step_by.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/sum.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take_any.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take_any_while.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_fold.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_reduce.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_reduce_with.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/unzip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/update.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/walk_tree.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/while_some.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/zip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/zip_eq.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/option.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/prelude.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/range.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/range_inclusive.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/result.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/chunk_by.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/chunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/mergesort.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/quicksort.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/rchunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/str.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/string.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/vec.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/math.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/par_either.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cannot_collect_filtermap_data.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cannot_zip_filtered_data.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cell_par_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/must_use.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/rc_par_iter.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/librayon-dc977fc3a8b42ed5.rlib: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/delegate.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/private.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/split_producer.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/array.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/binary_heap.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/btree_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/btree_set.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/hash_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/hash_set.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/linked_list.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/vec_deque.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/plumbing/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/blocks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/chain.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/chunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/cloned.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/consumer.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/copied.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/empty.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/enumerate.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/extend.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/filter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/filter_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/find.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/find_first_last/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flat_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flat_map_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flatten.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flatten_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold_chunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold_chunks_with.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/for_each.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/from_par_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/inspect.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/interleave.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/interleave_shortest.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/intersperse.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/len.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/map_with.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/multizip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/noop.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/once.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/panic_fuse.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/par_bridge.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/positions.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/product.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/reduce.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/repeat.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/rev.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip_any.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip_any_while.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/splitter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/step_by.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/sum.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take_any.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take_any_while.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_fold.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_reduce.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_reduce_with.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/unzip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/update.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/walk_tree.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/while_some.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/zip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/zip_eq.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/option.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/prelude.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/range.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/range_inclusive.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/result.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/chunk_by.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/chunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/mergesort.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/quicksort.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/rchunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/str.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/string.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/vec.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/math.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/par_either.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cannot_collect_filtermap_data.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cannot_zip_filtered_data.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cell_par_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/must_use.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/rc_par_iter.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/rayon-dc977fc3a8b42ed5.d: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/delegate.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/private.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/split_producer.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/array.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/binary_heap.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/btree_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/btree_set.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/hash_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/hash_set.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/linked_list.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/vec_deque.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/plumbing/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/blocks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/chain.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/chunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/cloned.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/consumer.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/copied.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/empty.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/enumerate.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/extend.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/filter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/filter_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/find.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/find_first_last/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flat_map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flat_map_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flatten.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flatten_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold_chunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold_chunks_with.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/for_each.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/from_par_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/inspect.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/interleave.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/interleave_shortest.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/intersperse.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/len.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/map.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/map_with.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/multizip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/noop.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/once.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/panic_fuse.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/par_bridge.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/positions.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/product.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/reduce.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/repeat.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/rev.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip_any.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip_any_while.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/splitter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/step_by.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/sum.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take_any.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take_any_while.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_fold.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_reduce.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_reduce_with.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/unzip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/update.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/walk_tree.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/while_some.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/zip.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/zip_eq.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/option.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/prelude.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/range.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/range_inclusive.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/result.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/chunk_by.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/chunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/mergesort.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/quicksort.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/rchunks.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/str.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/string.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/vec.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/math.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/par_either.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cannot_collect_filtermap_data.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cannot_zip_filtered_data.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cell_par_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/must_use.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/rc_par_iter.rs + +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/lib.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/delegate.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/private.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/split_producer.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/array.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/binary_heap.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/btree_map.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/btree_set.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/hash_map.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/hash_set.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/linked_list.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/collections/vec_deque.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/plumbing/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/blocks.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/chain.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/chunks.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/cloned.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/consumer.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/collect/test.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/copied.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/empty.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/enumerate.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/extend.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/filter.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/filter_map.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/find.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/find_first_last/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flat_map.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flat_map_iter.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flatten.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/flatten_iter.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold_chunks.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/fold_chunks_with.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/for_each.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/from_par_iter.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/inspect.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/interleave.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/interleave_shortest.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/intersperse.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/len.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/map.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/map_with.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/multizip.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/noop.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/once.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/panic_fuse.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/par_bridge.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/positions.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/product.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/reduce.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/repeat.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/rev.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip_any.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/skip_any_while.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/splitter.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/step_by.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/sum.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take_any.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/take_any_while.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_fold.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_reduce.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/try_reduce_with.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/unzip.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/update.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/walk_tree.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/while_some.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/zip.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/iter/zip_eq.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/option.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/prelude.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/range.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/range_inclusive.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/result.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/chunk_by.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/chunks.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/mergesort.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/quicksort.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/rchunks.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/slice/test.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/str.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/string.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/vec.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/math.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/par_either.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cannot_collect_filtermap_data.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cannot_zip_filtered_data.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/cell_par_iter.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/must_use.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/compile_fail/rc_par_iter.rs: diff --git a/12bitfloat_rust/risspam/target/release/deps/rayon_core-8cfcbcc105dcd0da.d b/12bitfloat_rust/risspam/target/release/deps/rayon_core-8cfcbcc105dcd0da.d new file mode 100644 index 0000000..4447eb5 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/deps/rayon_core-8cfcbcc105dcd0da.d @@ -0,0 +1,29 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/librayon_core-8cfcbcc105dcd0da.rmeta: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/private.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/broadcast/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/broadcast/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/job.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/join/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/latch.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/registry.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/scope/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/sleep/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/sleep/counters.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/spawn/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/thread_pool/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/thread_pool/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/unwind.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race1.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race2.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race3.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/rc_return.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/rc_upvar.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/scope_join_bad.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/test.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/librayon_core-8cfcbcc105dcd0da.rlib: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/private.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/broadcast/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/broadcast/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/job.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/join/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/latch.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/registry.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/scope/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/sleep/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/sleep/counters.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/spawn/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/thread_pool/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/thread_pool/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/unwind.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race1.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race2.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race3.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/rc_return.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/rc_upvar.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/scope_join_bad.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/test.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/rayon_core-8cfcbcc105dcd0da.d: /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/lib.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/private.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/broadcast/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/broadcast/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/job.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/join/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/latch.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/registry.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/scope/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/sleep/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/sleep/counters.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/spawn/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/thread_pool/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/thread_pool/test.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/unwind.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/mod.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race1.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race2.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race3.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/rc_return.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/rc_upvar.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/scope_join_bad.rs /home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/test.rs + +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/lib.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/private.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/broadcast/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/broadcast/test.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/job.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/join/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/latch.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/registry.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/scope/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/sleep/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/sleep/counters.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/spawn/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/thread_pool/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/thread_pool/test.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/unwind.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/mod.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race1.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race2.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/quicksort_race3.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/rc_return.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/rc_upvar.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/compile_fail/scope_join_bad.rs: +/home/retoor/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/test.rs: diff --git a/12bitfloat_rust/risspam/target/release/deps/risspam-d4d23922c0d57469 b/12bitfloat_rust/risspam/target/release/deps/risspam-d4d23922c0d57469 new file mode 100755 index 0000000..7ffb2cf Binary files /dev/null and b/12bitfloat_rust/risspam/target/release/deps/risspam-d4d23922c0d57469 differ diff --git a/12bitfloat_rust/risspam/target/release/deps/risspam-d4d23922c0d57469.d b/12bitfloat_rust/risspam/target/release/deps/risspam-d4d23922c0d57469.d new file mode 100644 index 0000000..8084d07 --- /dev/null +++ b/12bitfloat_rust/risspam/target/release/deps/risspam-d4d23922c0d57469.d @@ -0,0 +1,5 @@ +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/risspam-d4d23922c0d57469: src/main.rs + +/home/retoor/projects/spam/12bitfloat_rust/risspam/target/release/deps/risspam-d4d23922c0d57469.d: src/main.rs + +src/main.rs: diff --git a/Makefile b/Makefile index 22f42fc..770f194 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC = gcc CFLAGS = -Wall -Werror -Wextra -Ofast -std=c2x -all: build run valgrind build_risspam run_risspam benchmark +all: build run valgrind build_risspam run_risspam build: @echo "Compiling retoor_c project.". @@ -40,6 +40,14 @@ run_not_spam_risspam: valgrind: build valgrind ./isspam ./spam/*.txt +publish: + wget https://retoor.molodetz.nl/api/packages/retoor/generic/env.py/1.0.0/env.py + wget https://retoor.molodetz.nl/api/packages/retoor/generic/publish/1.0.0/publish + chmod +x publish + ./publish isspam + ./publish risspam + rm publish + rm env.py benchmark: -@rm -rf books echo "Extracting books." diff --git a/__pycache__/env.cpython-312.pyc b/__pycache__/env.cpython-312.pyc new file mode 100644 index 0000000..1525391 Binary files /dev/null and b/__pycache__/env.cpython-312.pyc differ