diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..4daf991 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,59 @@ +pub mod csv_compare { + use std::io::Write as IoWrite; + use std::{ + fs::File, + io::{BufRead, BufReader}, + }; + + use clap::ArgMatches; + pub struct Params { + pub delimiter: String, + pub source: String, + pub compared: String, + pub column: usize, + pub output: String, + } + + impl Params { + pub fn new_from_matches(matches: ArgMatches) -> Self { + Self { + delimiter: matches.value_of("delimiter").unwrap_or(";").to_string(), + source: matches.value_of("source").unwrap().to_string(), + compared: matches.value_of("compared").unwrap().to_string(), + column: matches.value_of("column").unwrap().parse().unwrap(), + output: matches.value_of("output").unwrap().to_string(), + } + } + } + + pub struct CsvLine { + pub line: String, + } + + impl CsvLine { + pub fn new(line: String) -> Self { + Self { line } + } + } + + pub fn load_vector(vector: &mut Vec, reader: BufReader) { + // Read the file line by line using the lines() iterator from std::io::BufRead. + for (_index, line) in reader.lines().enumerate() { + let line = line.unwrap(); + vector.push(CsvLine::new(line.to_string())); + } + } + + pub fn print_lines(vector: Vec) { + for line in vector.iter() { + println!("{}", line.line); + } + } + + pub fn write_to_file(params: Params, diff: Vec) { + let mut file = File::create(params.output).unwrap(); + for line in diff.iter() { + writeln!(&mut file, "{}", line.line).unwrap(); + } + } +} diff --git a/src/main.rs b/src/main.rs index b7b7858..215d640 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,52 +1,9 @@ -use clap::{App, ArgMatches}; +use clap::{App, load_yaml}; +use csvcompare::csv_compare::{CsvLine, Params, load_vector, print_lines, write_to_file}; + use std::fs::File; -use std::io::{BufRead, BufReader, Write}; -#[macro_use] -extern crate clap; +use std::io::{BufReader}; -struct Params { - delimiter: String, - source: String, - compared: String, - column: usize, - output: String, -} - -impl Params { - pub fn new_from_matches(matches: ArgMatches) -> Self { - Self { - delimiter: matches.value_of("delimiter").unwrap_or(";").to_string(), - source: matches.value_of("source").unwrap().to_string(), - compared: matches.value_of("compared").unwrap().to_string(), - column: matches.value_of("column").unwrap().parse().unwrap(), - output: matches.value_of("output").unwrap().to_string(), - } - } -} - -pub(crate) struct CsvLine { - line: String, -} - -impl CsvLine { - pub fn new(line: String) -> Self { - Self { line } - } -} - -pub(crate) fn load_vector(vector: &mut Vec, reader: BufReader) { - // Read the file line by line using the lines() iterator from std::io::BufRead. - for (_index, line) in reader.lines().enumerate() { - let line = line.unwrap(); - vector.push(CsvLine::new(line.to_string())); - } -} - -fn print_lines(vector: Vec) { - for line in vector.iter() { - println!("{}", line.line); - } -} fn main() { let yaml = load_yaml!("cli.yml"); let matches = App::from_yaml(yaml).get_matches(); @@ -84,10 +41,7 @@ fn main() { } if params.output.is_empty() == false { - let mut file = File::create(params.output).unwrap(); - for line in diff.iter() { - writeln!(&mut file, "{}", line.line).unwrap(); - } + write_to_file(params, diff); } else { print_lines(diff); } @@ -97,7 +51,7 @@ fn main() { mod tests { use std::{fs::File, io::BufReader, path::Path}; - use crate::{load_vector, CsvLine}; + use csvcompare::csv_compare::{CsvLine, load_vector}; fn get_reader() -> BufReader { let path = Path::new("./assets/csv1.csv"); diff --git a/target/.rustc_info.json b/target/.rustc_info.json index 21b2fae..2c93ff3 100644 --- a/target/.rustc_info.json +++ b/target/.rustc_info.json @@ -1 +1 @@ -{"rustc_fingerprint":8779373148605506356,"outputs":{"17598535894874457435":{"success":true,"status":"","code":0,"stdout":"rustc 1.54.0 (a178d0322 2021-07-26)\nbinary: rustc\ncommit-hash: a178d0322ce20e33eac124758e837cbd80a6f633\ncommit-date: 2021-07-26\nhost: x86_64-unknown-linux-gnu\nrelease: 1.54.0\nLLVM version: 12.0.1\n","stderr":""},"2797684049618456168":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: `-Csplit-debuginfo` is unstable on this platform\n\n"},"931469667778813386":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/mace/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file +{"rustc_fingerprint":8779373148605506356,"outputs":{"931469667778813386":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/mace/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"17598535894874457435":{"success":true,"status":"","code":0,"stdout":"rustc 1.54.0 (a178d0322 2021-07-26)\nbinary: rustc\ncommit-hash: a178d0322ce20e33eac124758e837cbd80a6f633\ncommit-date: 2021-07-26\nhost: x86_64-unknown-linux-gnu\nrelease: 1.54.0\nLLVM version: 12.0.1\n","stderr":""},"2797684049618456168":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: `-Csplit-debuginfo` is unstable on this platform\n\n"}},"successes":{}} \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/bin-csvcompare b/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/bin-csvcompare new file mode 100644 index 0000000..ddd12a4 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/bin-csvcompare @@ -0,0 +1 @@ +a3991e01b75db47f \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/bin-csvcompare.json b/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/bin-csvcompare.json new file mode 100644 index 0000000..f26043b --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/bin-csvcompare.json @@ -0,0 +1 @@ +{"rustc":17807758859236181817,"features":"[]","target":14477650929426316123,"profile":1144844575097113612,"path":1036222786711178230,"deps":[[1107353818263796810,"csvcompare",false,15761132437638236415],[4345520495555234844,"clap",false,8805950514040045324]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/csvcompare-0a3eeaf976571bb4/dep-bin-csvcompare"}}],"rustflags":[],"metadata":8456049419002105797,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/dep-bin-csvcompare b/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/dep-bin-csvcompare new file mode 100644 index 0000000..da7ecf9 Binary files /dev/null and b/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/dep-bin-csvcompare differ diff --git a/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/invoked.timestamp b/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-0a3eeaf976571bb4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/dep-test-bin-csvcompare b/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/dep-test-bin-csvcompare new file mode 100644 index 0000000..da7ecf9 Binary files /dev/null and b/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/dep-test-bin-csvcompare differ diff --git a/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/invoked.timestamp b/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/test-bin-csvcompare b/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/test-bin-csvcompare new file mode 100644 index 0000000..3ac81c3 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/test-bin-csvcompare @@ -0,0 +1 @@ +98338d7bc269fd3b \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/test-bin-csvcompare.json b/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/test-bin-csvcompare.json new file mode 100644 index 0000000..9cbb53a --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-6794bca2257b8e78/test-bin-csvcompare.json @@ -0,0 +1 @@ +{"rustc":17807758859236181817,"features":"[]","target":14477650929426316123,"profile":14050059120794533848,"path":1036222786711178230,"deps":[[1107353818263796810,"csvcompare",false,11213782078068079805],[4345520495555234844,"clap",false,14202572740688878169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/csvcompare-6794bca2257b8e78/dep-test-bin-csvcompare"}}],"rustflags":[],"metadata":8456049419002105797,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/dep-lib-csvcompare b/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/dep-lib-csvcompare new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/dep-lib-csvcompare differ diff --git a/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/invoked.timestamp b/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/lib-csvcompare b/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/lib-csvcompare new file mode 100644 index 0000000..677daa2 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/lib-csvcompare @@ -0,0 +1 @@ +ff48502b72cabada \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/lib-csvcompare.json b/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/lib-csvcompare.json new file mode 100644 index 0000000..bde11a1 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-8a2e071e9ed95a04/lib-csvcompare.json @@ -0,0 +1 @@ +{"rustc":17807758859236181817,"features":"[]","target":12726061379515898114,"profile":1144844575097113612,"path":10872709659218687626,"deps":[[4345520495555234844,"clap",false,8805950514040045324]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/csvcompare-8a2e071e9ed95a04/dep-lib-csvcompare"}}],"rustflags":[],"metadata":8456049419002105797,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/dep-test-bin-csvcompare b/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/dep-test-bin-csvcompare new file mode 100644 index 0000000..da7ecf9 Binary files /dev/null and b/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/dep-test-bin-csvcompare differ diff --git a/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/invoked.timestamp b/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/test-bin-csvcompare b/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/test-bin-csvcompare new file mode 100644 index 0000000..3eda353 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/test-bin-csvcompare @@ -0,0 +1 @@ +d4437e130a6797d4 \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/test-bin-csvcompare.json b/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/test-bin-csvcompare.json new file mode 100644 index 0000000..7c4d519 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-b0d53b777eb69535/test-bin-csvcompare.json @@ -0,0 +1 @@ +{"rustc":17807758859236181817,"features":"[]","target":14477650929426316123,"profile":6415348288391478785,"path":1036222786711178230,"deps":[[1107353818263796810,"csvcompare",false,15761132437638236415],[4345520495555234844,"clap",false,8805950514040045324]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/csvcompare-b0d53b777eb69535/dep-test-bin-csvcompare"}}],"rustflags":[],"metadata":8456049419002105797,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/dep-lib-csvcompare b/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/dep-lib-csvcompare new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/dep-lib-csvcompare differ diff --git a/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/invoked.timestamp b/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/lib-csvcompare b/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/lib-csvcompare new file mode 100644 index 0000000..90d02c2 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/lib-csvcompare @@ -0,0 +1 @@ +bdbce307635b9f9b \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/lib-csvcompare.json b/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/lib-csvcompare.json new file mode 100644 index 0000000..c45ca59 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-ba87fe827ffc5437/lib-csvcompare.json @@ -0,0 +1 @@ +{"rustc":17807758859236181817,"features":"[]","target":12726061379515898114,"profile":18108590124580271077,"path":10872709659218687626,"deps":[[4345520495555234844,"clap",false,14202572740688878169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/csvcompare-ba87fe827ffc5437/dep-lib-csvcompare"}}],"rustflags":[],"metadata":8456049419002105797,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-da6c08677d53a299/bin-csvcompare b/target/debug/.fingerprint/csvcompare-da6c08677d53a299/bin-csvcompare new file mode 100644 index 0000000..628b5ec --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-da6c08677d53a299/bin-csvcompare @@ -0,0 +1 @@ +3b84b08a6c5bc3e7 \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-da6c08677d53a299/bin-csvcompare.json b/target/debug/.fingerprint/csvcompare-da6c08677d53a299/bin-csvcompare.json new file mode 100644 index 0000000..237c603 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-da6c08677d53a299/bin-csvcompare.json @@ -0,0 +1 @@ +{"rustc":17807758859236181817,"features":"[]","target":14477650929426316123,"profile":18108590124580271077,"path":1036222786711178230,"deps":[[1107353818263796810,"csvcompare",false,11213782078068079805],[4345520495555234844,"clap",false,14202572740688878169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/csvcompare-da6c08677d53a299/dep-bin-csvcompare"}}],"rustflags":[],"metadata":8456049419002105797,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-da6c08677d53a299/dep-bin-csvcompare b/target/debug/.fingerprint/csvcompare-da6c08677d53a299/dep-bin-csvcompare new file mode 100644 index 0000000..da7ecf9 Binary files /dev/null and b/target/debug/.fingerprint/csvcompare-da6c08677d53a299/dep-bin-csvcompare differ diff --git a/target/debug/.fingerprint/csvcompare-da6c08677d53a299/invoked.timestamp b/target/debug/.fingerprint/csvcompare-da6c08677d53a299/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-da6c08677d53a299/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/dep-test-lib-csvcompare b/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/dep-test-lib-csvcompare new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/dep-test-lib-csvcompare differ diff --git a/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/invoked.timestamp b/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/test-lib-csvcompare b/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/test-lib-csvcompare new file mode 100644 index 0000000..6fd60ab --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/test-lib-csvcompare @@ -0,0 +1 @@ +9ef17e73f3fa74a5 \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/test-lib-csvcompare.json b/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/test-lib-csvcompare.json new file mode 100644 index 0000000..7d8be08 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-e511a0deeeacf128/test-lib-csvcompare.json @@ -0,0 +1 @@ +{"rustc":17807758859236181817,"features":"[]","target":12726061379515898114,"profile":6415348288391478785,"path":10872709659218687626,"deps":[[4345520495555234844,"clap",false,8805950514040045324]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/csvcompare-e511a0deeeacf128/dep-test-lib-csvcompare"}}],"rustflags":[],"metadata":8456049419002105797,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/dep-test-lib-csvcompare b/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/dep-test-lib-csvcompare new file mode 100644 index 0000000..fb1fbec Binary files /dev/null and b/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/dep-test-lib-csvcompare differ diff --git a/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/invoked.timestamp b/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/test-lib-csvcompare b/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/test-lib-csvcompare new file mode 100644 index 0000000..24fcc8a --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/test-lib-csvcompare @@ -0,0 +1 @@ +dbb8c82f878d4260 \ No newline at end of file diff --git a/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/test-lib-csvcompare.json b/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/test-lib-csvcompare.json new file mode 100644 index 0000000..541b332 --- /dev/null +++ b/target/debug/.fingerprint/csvcompare-f55edbeb9973f651/test-lib-csvcompare.json @@ -0,0 +1 @@ +{"rustc":17807758859236181817,"features":"[]","target":12726061379515898114,"profile":14050059120794533848,"path":10872709659218687626,"deps":[[4345520495555234844,"clap",false,14202572740688878169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/csvcompare-f55edbeb9973f651/dep-test-lib-csvcompare"}}],"rustflags":[],"metadata":8456049419002105797,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/csvcompare b/target/debug/csvcompare index bba97a2..21350e1 100755 Binary files a/target/debug/csvcompare and b/target/debug/csvcompare differ diff --git a/target/debug/csvcompare.d b/target/debug/csvcompare.d index 04a5ebc..1794535 100644 --- a/target/debug/csvcompare.d +++ b/target/debug/csvcompare.d @@ -1 +1 @@ -/home/mace/repos/rust/csvcompare/target/debug/csvcompare: /home/mace/repos/rust/csvcompare/src/cli.yml /home/mace/repos/rust/csvcompare/src/main.rs +/home/mace/repos/rust/csvcompare/target/debug/csvcompare: /home/mace/repos/rust/csvcompare/src/cli.yml /home/mace/repos/rust/csvcompare/src/lib.rs /home/mace/repos/rust/csvcompare/src/main.rs diff --git a/target/debug/deps/csvcompare-0a3eeaf976571bb4.d b/target/debug/deps/csvcompare-0a3eeaf976571bb4.d new file mode 100644 index 0000000..7de6917 --- /dev/null +++ b/target/debug/deps/csvcompare-0a3eeaf976571bb4.d @@ -0,0 +1,6 @@ +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-0a3eeaf976571bb4.rmeta: src/main.rs src/cli.yml + +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-0a3eeaf976571bb4.d: src/main.rs src/cli.yml + +src/main.rs: +src/cli.yml: diff --git a/target/debug/deps/csvcompare-6794bca2257b8e78 b/target/debug/deps/csvcompare-6794bca2257b8e78 new file mode 100755 index 0000000..68782c4 Binary files /dev/null and b/target/debug/deps/csvcompare-6794bca2257b8e78 differ diff --git a/target/debug/deps/csvcompare-6794bca2257b8e78.d b/target/debug/deps/csvcompare-6794bca2257b8e78.d new file mode 100644 index 0000000..e2be0cb --- /dev/null +++ b/target/debug/deps/csvcompare-6794bca2257b8e78.d @@ -0,0 +1,6 @@ +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-6794bca2257b8e78: src/main.rs src/cli.yml + +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-6794bca2257b8e78.d: src/main.rs src/cli.yml + +src/main.rs: +src/cli.yml: diff --git a/target/debug/deps/csvcompare-8a2e071e9ed95a04.d b/target/debug/deps/csvcompare-8a2e071e9ed95a04.d new file mode 100644 index 0000000..06f690d --- /dev/null +++ b/target/debug/deps/csvcompare-8a2e071e9ed95a04.d @@ -0,0 +1,5 @@ +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-8a2e071e9ed95a04.rmeta: src/lib.rs + +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-8a2e071e9ed95a04.d: src/lib.rs + +src/lib.rs: diff --git a/target/debug/deps/csvcompare-b0d53b777eb69535.d b/target/debug/deps/csvcompare-b0d53b777eb69535.d new file mode 100644 index 0000000..350a851 --- /dev/null +++ b/target/debug/deps/csvcompare-b0d53b777eb69535.d @@ -0,0 +1,6 @@ +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-b0d53b777eb69535.rmeta: src/main.rs src/cli.yml + +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-b0d53b777eb69535.d: src/main.rs src/cli.yml + +src/main.rs: +src/cli.yml: diff --git a/target/debug/deps/csvcompare-ba87fe827ffc5437.d b/target/debug/deps/csvcompare-ba87fe827ffc5437.d new file mode 100644 index 0000000..477acbe --- /dev/null +++ b/target/debug/deps/csvcompare-ba87fe827ffc5437.d @@ -0,0 +1,7 @@ +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-ba87fe827ffc5437.rmeta: src/lib.rs + +/home/mace/repos/rust/csvcompare/target/debug/deps/libcsvcompare-ba87fe827ffc5437.rlib: src/lib.rs + +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-ba87fe827ffc5437.d: src/lib.rs + +src/lib.rs: diff --git a/target/debug/deps/csvcompare-da6c08677d53a299 b/target/debug/deps/csvcompare-da6c08677d53a299 new file mode 100755 index 0000000..21350e1 Binary files /dev/null and b/target/debug/deps/csvcompare-da6c08677d53a299 differ diff --git a/target/debug/deps/csvcompare-da6c08677d53a299.d b/target/debug/deps/csvcompare-da6c08677d53a299.d new file mode 100644 index 0000000..fb84eda --- /dev/null +++ b/target/debug/deps/csvcompare-da6c08677d53a299.d @@ -0,0 +1,6 @@ +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-da6c08677d53a299: src/main.rs src/cli.yml + +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-da6c08677d53a299.d: src/main.rs src/cli.yml + +src/main.rs: +src/cli.yml: diff --git a/target/debug/deps/csvcompare-e511a0deeeacf128.d b/target/debug/deps/csvcompare-e511a0deeeacf128.d new file mode 100644 index 0000000..db0efa1 --- /dev/null +++ b/target/debug/deps/csvcompare-e511a0deeeacf128.d @@ -0,0 +1,5 @@ +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-e511a0deeeacf128.rmeta: src/lib.rs + +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-e511a0deeeacf128.d: src/lib.rs + +src/lib.rs: diff --git a/target/debug/deps/csvcompare-f55edbeb9973f651 b/target/debug/deps/csvcompare-f55edbeb9973f651 new file mode 100755 index 0000000..65da60b Binary files /dev/null and b/target/debug/deps/csvcompare-f55edbeb9973f651 differ diff --git a/target/debug/deps/csvcompare-f55edbeb9973f651.d b/target/debug/deps/csvcompare-f55edbeb9973f651.d new file mode 100644 index 0000000..bf629eb --- /dev/null +++ b/target/debug/deps/csvcompare-f55edbeb9973f651.d @@ -0,0 +1,5 @@ +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-f55edbeb9973f651: src/lib.rs + +/home/mace/repos/rust/csvcompare/target/debug/deps/csvcompare-f55edbeb9973f651.d: src/lib.rs + +src/lib.rs: diff --git a/target/debug/deps/libcsvcompare-0a3eeaf976571bb4.rmeta b/target/debug/deps/libcsvcompare-0a3eeaf976571bb4.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/deps/libcsvcompare-8a2e071e9ed95a04.rmeta b/target/debug/deps/libcsvcompare-8a2e071e9ed95a04.rmeta new file mode 100644 index 0000000..4d3b496 Binary files /dev/null and b/target/debug/deps/libcsvcompare-8a2e071e9ed95a04.rmeta differ diff --git a/target/debug/deps/libcsvcompare-b0d53b777eb69535.rmeta b/target/debug/deps/libcsvcompare-b0d53b777eb69535.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/deps/libcsvcompare-ba87fe827ffc5437.rlib b/target/debug/deps/libcsvcompare-ba87fe827ffc5437.rlib new file mode 100644 index 0000000..c13d2a9 Binary files /dev/null and b/target/debug/deps/libcsvcompare-ba87fe827ffc5437.rlib differ diff --git a/target/debug/deps/libcsvcompare-ba87fe827ffc5437.rmeta b/target/debug/deps/libcsvcompare-ba87fe827ffc5437.rmeta new file mode 100644 index 0000000..5b75f9e Binary files /dev/null and b/target/debug/deps/libcsvcompare-ba87fe827ffc5437.rmeta differ diff --git a/target/debug/deps/libcsvcompare-e511a0deeeacf128.rmeta b/target/debug/deps/libcsvcompare-e511a0deeeacf128.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/12gem5l1iqm1laja.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/12gem5l1iqm1laja.o new file mode 100644 index 0000000..9481e5c Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/12gem5l1iqm1laja.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/13i9d00hr63c4kt2.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/13i9d00hr63c4kt2.o new file mode 100644 index 0000000..34fd4c4 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/13i9d00hr63c4kt2.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/168m334664k1ja9n.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/168m334664k1ja9n.o new file mode 100644 index 0000000..0230799 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/168m334664k1ja9n.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1cnvonzhtapzif45.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1cnvonzhtapzif45.o new file mode 100644 index 0000000..fba31fd Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1cnvonzhtapzif45.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1fxjqnh0etx6gwim.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1fxjqnh0etx6gwim.o new file mode 100644 index 0000000..7cd4e7b Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1fxjqnh0etx6gwim.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1m12n3azaz0a26pe.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1m12n3azaz0a26pe.o new file mode 100644 index 0000000..8c4a267 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1m12n3azaz0a26pe.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1q4exepw1080b3oi.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1q4exepw1080b3oi.o new file mode 100644 index 0000000..6128c47 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1q4exepw1080b3oi.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1snp8l6edz5w24vt.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1snp8l6edz5w24vt.o new file mode 100644 index 0000000..865bae4 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1snp8l6edz5w24vt.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1z6a9e5rk44emafo.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1z6a9e5rk44emafo.o new file mode 100644 index 0000000..aeaaf64 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/1z6a9e5rk44emafo.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/219r2lmoei4ge43z.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/219r2lmoei4ge43z.o new file mode 100644 index 0000000..1389be3 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/219r2lmoei4ge43z.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/21x0ejxk9kizv9gx.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/21x0ejxk9kizv9gx.o new file mode 100644 index 0000000..4fe9823 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/21x0ejxk9kizv9gx.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/29q1gcwy6kl18k5x.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/29q1gcwy6kl18k5x.o new file mode 100644 index 0000000..78f3ed1 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/29q1gcwy6kl18k5x.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2tkypva517lb4rfe.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2tkypva517lb4rfe.o new file mode 100644 index 0000000..65389fb Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2tkypva517lb4rfe.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vezfm288aje3av7.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vezfm288aje3av7.o new file mode 100644 index 0000000..3fc05cb Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vezfm288aje3av7.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vi5ivk7yffd2qxo.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vi5ivk7yffd2qxo.o new file mode 100644 index 0000000..21e362a Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vi5ivk7yffd2qxo.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vt84k9aflza7xsr.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vt84k9aflza7xsr.o new file mode 100644 index 0000000..60f5254 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vt84k9aflza7xsr.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vuxcyji4j2cp6fr.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vuxcyji4j2cp6fr.o new file mode 100644 index 0000000..538f637 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2vuxcyji4j2cp6fr.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2zewkhsaggpnetkm.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2zewkhsaggpnetkm.o new file mode 100644 index 0000000..7f5d4c1 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2zewkhsaggpnetkm.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2zhqd1reyzmaz5bj.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2zhqd1reyzmaz5bj.o new file mode 100644 index 0000000..c7bc1e3 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/2zhqd1reyzmaz5bj.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/33f2x3xgfjh75ssc.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/33f2x3xgfjh75ssc.o new file mode 100644 index 0000000..eb717b5 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/33f2x3xgfjh75ssc.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/366uwlpzc6rh9gxq.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/366uwlpzc6rh9gxq.o new file mode 100644 index 0000000..27852b0 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/366uwlpzc6rh9gxq.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/36ybawqjqqo699e8.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/36ybawqjqqo699e8.o new file mode 100644 index 0000000..f429c05 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/36ybawqjqqo699e8.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/3wyd3rywwq8fh7ko.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/3wyd3rywwq8fh7ko.o new file mode 100644 index 0000000..246f41d Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/3wyd3rywwq8fh7ko.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/3xnofs5n484q1ot.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/3xnofs5n484q1ot.o new file mode 100644 index 0000000..f3745dd Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/3xnofs5n484q1ot.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/3yh20arixfbvpvma.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/3yh20arixfbvpvma.o new file mode 100644 index 0000000..fedf408 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/3yh20arixfbvpvma.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/43agi7fhmsviho8p.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/43agi7fhmsviho8p.o new file mode 100644 index 0000000..0683339 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/43agi7fhmsviho8p.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/481q6rshy5tj8d41.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/481q6rshy5tj8d41.o new file mode 100644 index 0000000..fc2578a Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/481q6rshy5tj8d41.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4gmf2pwq06swr7eo.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4gmf2pwq06swr7eo.o new file mode 100644 index 0000000..43f2bcc Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4gmf2pwq06swr7eo.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4hlfigp5zcv0vsqv.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4hlfigp5zcv0vsqv.o new file mode 100644 index 0000000..9f52eb7 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4hlfigp5zcv0vsqv.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4ijwegh418z0wv87.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4ijwegh418z0wv87.o new file mode 100644 index 0000000..d630566 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4ijwegh418z0wv87.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4kf99qrwllrgoaf7.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4kf99qrwllrgoaf7.o new file mode 100644 index 0000000..3657f3b Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4kf99qrwllrgoaf7.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4qcnsbyogv9viqxu.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4qcnsbyogv9viqxu.o new file mode 100644 index 0000000..bac48bc Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4qcnsbyogv9viqxu.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4tpcofk1ww8swxuo.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4tpcofk1ww8swxuo.o new file mode 100644 index 0000000..4c2d300 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4tpcofk1ww8swxuo.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4tpz4hplwr9mtgal.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4tpz4hplwr9mtgal.o new file mode 100644 index 0000000..7601bbd Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4tpz4hplwr9mtgal.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4w0aqir7zwx1r28z.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4w0aqir7zwx1r28z.o new file mode 100644 index 0000000..4b4b5aa Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/4w0aqir7zwx1r28z.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/55a7kwuaecih81a3.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/55a7kwuaecih81a3.o new file mode 100644 index 0000000..4b8b7c5 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/55a7kwuaecih81a3.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/55pnvs9k9h42s07y.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/55pnvs9k9h42s07y.o new file mode 100644 index 0000000..f14df63 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/55pnvs9k9h42s07y.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/5bouy1w80e0jzt5e.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/5bouy1w80e0jzt5e.o new file mode 100644 index 0000000..91d73d5 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/5bouy1w80e0jzt5e.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/autjzzfzhm714ej.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/autjzzfzhm714ej.o new file mode 100644 index 0000000..9e31e9b Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/autjzzfzhm714ej.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/c7yxwoeyxkrsgcy.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/c7yxwoeyxkrsgcy.o new file mode 100644 index 0000000..4c3b70a Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/c7yxwoeyxkrsgcy.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/dep-graph.bin b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/dep-graph.bin new file mode 100644 index 0000000..575cf49 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/dep-graph.bin differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/lsmr0404v318kop.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/lsmr0404v318kop.o new file mode 100644 index 0000000..86bb6a1 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/lsmr0404v318kop.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/pbjjkebzxes5u9t.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/pbjjkebzxes5u9t.o new file mode 100644 index 0000000..4d2f36e Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/pbjjkebzxes5u9t.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/query-cache.bin b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/query-cache.bin new file mode 100644 index 0000000..e4be2d0 Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/query-cache.bin differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/work-products.bin b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/work-products.bin new file mode 100644 index 0000000..258785c Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/work-products.bin differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/x1do2i210ozvw2j.o b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/x1do2i210ozvw2j.o new file mode 100644 index 0000000..0e5274b Binary files /dev/null and b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt-31c7t28emtzu5/x1do2i210ozvw2j.o differ diff --git a/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt.lock b/target/debug/incremental/csvcompare-10h08qjm0py4x/s-g1vcsczov2-poyujt.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/168qu8ie16chhd68.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/168qu8ie16chhd68.o new file mode 100644 index 0000000..2bcd094 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/168qu8ie16chhd68.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/19b8lo0fk2kp2tvc.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/19b8lo0fk2kp2tvc.o new file mode 100644 index 0000000..61533e3 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/19b8lo0fk2kp2tvc.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/19l9blj8mipw2hn4.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/19l9blj8mipw2hn4.o new file mode 100644 index 0000000..51101ee Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/19l9blj8mipw2hn4.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1no9u0sd5ih2a3w0.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1no9u0sd5ih2a3w0.o new file mode 100644 index 0000000..1b286eb Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1no9u0sd5ih2a3w0.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1telda63eluqcdx3.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1telda63eluqcdx3.o new file mode 100644 index 0000000..e4f1d7c Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1telda63eluqcdx3.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1wf7kddbmwvlivc3.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1wf7kddbmwvlivc3.o new file mode 100644 index 0000000..49c8cf7 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1wf7kddbmwvlivc3.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1x7ju2vrp7u7uvw7.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1x7ju2vrp7u7uvw7.o new file mode 100644 index 0000000..fbeb0cf Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/1x7ju2vrp7u7uvw7.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/22f0og5vymez8pby.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/22f0og5vymez8pby.o new file mode 100644 index 0000000..2a6462a Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/22f0og5vymez8pby.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2dvl4zvzxiaa275i.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2dvl4zvzxiaa275i.o new file mode 100644 index 0000000..2f1d0ce Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2dvl4zvzxiaa275i.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2ixub7juk1oqnumt.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2ixub7juk1oqnumt.o new file mode 100644 index 0000000..341773e Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2ixub7juk1oqnumt.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2lutyhj16avjs5rv.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2lutyhj16avjs5rv.o new file mode 100644 index 0000000..2e1573f Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2lutyhj16avjs5rv.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2p33ghhuwtcmfk32.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2p33ghhuwtcmfk32.o new file mode 100644 index 0000000..3ac0a30 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2p33ghhuwtcmfk32.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2yudeflcmu1q14z0.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2yudeflcmu1q14z0.o new file mode 100644 index 0000000..dec71fd Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/2yudeflcmu1q14z0.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/30q10dm634xlzerw.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/30q10dm634xlzerw.o new file mode 100644 index 0000000..acc4c69 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/30q10dm634xlzerw.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/33hqoozl0fykjb49.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/33hqoozl0fykjb49.o new file mode 100644 index 0000000..ff1e906 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/33hqoozl0fykjb49.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/3fzxfftejqrbf9uc.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/3fzxfftejqrbf9uc.o new file mode 100644 index 0000000..b492a1f Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/3fzxfftejqrbf9uc.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/3p1cqay704r25eq5.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/3p1cqay704r25eq5.o new file mode 100644 index 0000000..264df71 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/3p1cqay704r25eq5.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/44acce28dqys34w9.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/44acce28dqys34w9.o new file mode 100644 index 0000000..459034b Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/44acce28dqys34w9.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/49q1elsbauifxpp3.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/49q1elsbauifxpp3.o new file mode 100644 index 0000000..9964e92 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/49q1elsbauifxpp3.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4a5ywtam665q6kv4.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4a5ywtam665q6kv4.o new file mode 100644 index 0000000..720456e Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4a5ywtam665q6kv4.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4facejowb2wp040h.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4facejowb2wp040h.o new file mode 100644 index 0000000..f848f3a Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4facejowb2wp040h.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4lnf48cufi970fl4.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4lnf48cufi970fl4.o new file mode 100644 index 0000000..e90d03d Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4lnf48cufi970fl4.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4vzmoyc26pvvxeg8.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4vzmoyc26pvvxeg8.o new file mode 100644 index 0000000..14b6cb4 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/4vzmoyc26pvvxeg8.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/51frquix8f3guua5.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/51frquix8f3guua5.o new file mode 100644 index 0000000..78b3d99 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/51frquix8f3guua5.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/525id0jzucuuafv.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/525id0jzucuuafv.o new file mode 100644 index 0000000..460fe47 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/525id0jzucuuafv.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/57bjg78ndyvmul1k.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/57bjg78ndyvmul1k.o new file mode 100644 index 0000000..81950c3 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/57bjg78ndyvmul1k.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/59qpu6p1kwt4vpt7.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/59qpu6p1kwt4vpt7.o new file mode 100644 index 0000000..cd6d7d1 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/59qpu6p1kwt4vpt7.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5ajpwavpra2vwxsj.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5ajpwavpra2vwxsj.o new file mode 100644 index 0000000..b24b4f4 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5ajpwavpra2vwxsj.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5aqedzsdt9jtgypq.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5aqedzsdt9jtgypq.o new file mode 100644 index 0000000..3e60ab7 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5aqedzsdt9jtgypq.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5ci8j9b1dft4022y.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5ci8j9b1dft4022y.o new file mode 100644 index 0000000..966968b Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5ci8j9b1dft4022y.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5edd2aqts7svq6d.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5edd2aqts7svq6d.o new file mode 100644 index 0000000..40a0709 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/5edd2aqts7svq6d.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/a4466zty0iy4yos.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/a4466zty0iy4yos.o new file mode 100644 index 0000000..1c11f72 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/a4466zty0iy4yos.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/dep-graph.bin b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/dep-graph.bin new file mode 100644 index 0000000..527dcc5 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/dep-graph.bin differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/msef02ns5rrrbc1.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/msef02ns5rrrbc1.o new file mode 100644 index 0000000..726696b Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/msef02ns5rrrbc1.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/query-cache.bin b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/query-cache.bin new file mode 100644 index 0000000..683cb44 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/query-cache.bin differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/qunkw99ryizrljd.o b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/qunkw99ryizrljd.o new file mode 100644 index 0000000..908188f Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/qunkw99ryizrljd.o differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/work-products.bin b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/work-products.bin new file mode 100644 index 0000000..252d283 Binary files /dev/null and b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91-3cn1z6abm6bb8/work-products.bin differ diff --git a/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91.lock b/target/debug/incremental/csvcompare-1ip342n8oz3ty/s-g1vcsda9yt-1d73a91.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9-mdqhtiofishj/dep-graph.bin b/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9-mdqhtiofishj/dep-graph.bin new file mode 100644 index 0000000..78ee27d Binary files /dev/null and b/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9-mdqhtiofishj/dep-graph.bin differ diff --git a/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9-mdqhtiofishj/query-cache.bin b/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9-mdqhtiofishj/query-cache.bin new file mode 100644 index 0000000..940884e Binary files /dev/null and b/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9-mdqhtiofishj/query-cache.bin differ diff --git a/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9-mdqhtiofishj/work-products.bin b/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9-mdqhtiofishj/work-products.bin new file mode 100644 index 0000000..f7f4161 Binary files /dev/null and b/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9-mdqhtiofishj/work-products.bin differ diff --git a/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9.lock b/target/debug/incremental/csvcompare-1peq5b6mt56fv/s-g1vcs8ovg7-hlfov9.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq-x6k7ba0sd3xz/dep-graph.bin b/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq-x6k7ba0sd3xz/dep-graph.bin new file mode 100644 index 0000000..922adcc Binary files /dev/null and b/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq-x6k7ba0sd3xz/dep-graph.bin differ diff --git a/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq-x6k7ba0sd3xz/query-cache.bin b/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq-x6k7ba0sd3xz/query-cache.bin new file mode 100644 index 0000000..250f3c8 Binary files /dev/null and b/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq-x6k7ba0sd3xz/query-cache.bin differ diff --git a/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq-x6k7ba0sd3xz/work-products.bin b/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq-x6k7ba0sd3xz/work-products.bin new file mode 100644 index 0000000..f7f4161 Binary files /dev/null and b/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq-x6k7ba0sd3xz/work-products.bin differ diff --git a/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq.lock b/target/debug/incremental/csvcompare-1z7j3m4lw9z8j/s-g1vcs8pbm6-21vlyq.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/1ue9mtbnkgcpa5fg.o b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/1ue9mtbnkgcpa5fg.o new file mode 100644 index 0000000..80f6f16 Binary files /dev/null and b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/1ue9mtbnkgcpa5fg.o differ diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/22hzqep96tgpi8i3.o b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/22hzqep96tgpi8i3.o new file mode 100644 index 0000000..3c9c518 Binary files /dev/null and b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/22hzqep96tgpi8i3.o differ diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/2958ifgrknmjzp4.o b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/2958ifgrknmjzp4.o new file mode 100644 index 0000000..db7e91f Binary files /dev/null and b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/2958ifgrknmjzp4.o differ diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/2f3y7gc1eehxicx9.o b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/2f3y7gc1eehxicx9.o new file mode 100644 index 0000000..df85c4b Binary files /dev/null and b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/2f3y7gc1eehxicx9.o differ diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/34u5zucp4qcsvwe6.o b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/34u5zucp4qcsvwe6.o new file mode 100644 index 0000000..dc4eec0 Binary files /dev/null and b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/34u5zucp4qcsvwe6.o differ diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/dep-graph.bin b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/dep-graph.bin new file mode 100644 index 0000000..503a52e Binary files /dev/null and b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/dep-graph.bin differ diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/p3hruojbvp4r7y3.o b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/p3hruojbvp4r7y3.o new file mode 100644 index 0000000..654a8a3 Binary files /dev/null and b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/p3hruojbvp4r7y3.o differ diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/query-cache.bin b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/query-cache.bin new file mode 100644 index 0000000..1fdcf5c Binary files /dev/null and b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/query-cache.bin differ diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/work-products.bin b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/work-products.bin new file mode 100644 index 0000000..ffe2c1b Binary files /dev/null and b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn-qz9newb3u1f5/work-products.bin differ diff --git a/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn.lock b/target/debug/incremental/csvcompare-26nrxk164rjf6/s-g1vcsg4uvj-1qjqwbn.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr-lqhy6vvxeweg/dep-graph.bin b/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr-lqhy6vvxeweg/dep-graph.bin new file mode 100644 index 0000000..32bceb1 Binary files /dev/null and b/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr-lqhy6vvxeweg/dep-graph.bin differ diff --git a/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr-lqhy6vvxeweg/query-cache.bin b/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr-lqhy6vvxeweg/query-cache.bin new file mode 100644 index 0000000..569d283 Binary files /dev/null and b/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr-lqhy6vvxeweg/query-cache.bin differ diff --git a/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr-lqhy6vvxeweg/work-products.bin b/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr-lqhy6vvxeweg/work-products.bin new file mode 100644 index 0000000..f7f4161 Binary files /dev/null and b/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr-lqhy6vvxeweg/work-products.bin differ diff --git a/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr.lock b/target/debug/incremental/csvcompare-3ebeq2e2zhmnp/s-g1vcrclpla-aqerhr.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/1b8ifpa35k0mfsxy.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/1b8ifpa35k0mfsxy.o new file mode 100644 index 0000000..fc55638 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/1b8ifpa35k0mfsxy.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/1fw1e45rempzatu5.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/1fw1e45rempzatu5.o new file mode 100644 index 0000000..fbc2581 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/1fw1e45rempzatu5.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/1lc9m6r66brbb0uy.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/1lc9m6r66brbb0uy.o new file mode 100644 index 0000000..c2ced7d Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/1lc9m6r66brbb0uy.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/249v8cpwyjfdmiqb.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/249v8cpwyjfdmiqb.o new file mode 100644 index 0000000..4549f10 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/249v8cpwyjfdmiqb.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/272jlle48u6d15y5.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/272jlle48u6d15y5.o new file mode 100644 index 0000000..fadfa77 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/272jlle48u6d15y5.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2fm5j35n7dg31z80.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2fm5j35n7dg31z80.o new file mode 100644 index 0000000..5e797cf Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2fm5j35n7dg31z80.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2qyocc5hkt57t3fm.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2qyocc5hkt57t3fm.o new file mode 100644 index 0000000..7810f1f Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2qyocc5hkt57t3fm.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2ronc0fudgpiirye.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2ronc0fudgpiirye.o new file mode 100644 index 0000000..cbc69ad Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2ronc0fudgpiirye.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2snbdf9ht1whot17.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2snbdf9ht1whot17.o new file mode 100644 index 0000000..6e86a53 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2snbdf9ht1whot17.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2st03g0i5f2qofxf.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2st03g0i5f2qofxf.o new file mode 100644 index 0000000..13dc380 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2st03g0i5f2qofxf.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2vfgylwxt4o06ozm.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2vfgylwxt4o06ozm.o new file mode 100644 index 0000000..deac9f8 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/2vfgylwxt4o06ozm.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/32j051wni6q8o18g.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/32j051wni6q8o18g.o new file mode 100644 index 0000000..5575f30 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/32j051wni6q8o18g.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3852o1qwmn0qwxg8.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3852o1qwmn0qwxg8.o new file mode 100644 index 0000000..1f7da2b Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3852o1qwmn0qwxg8.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3c9y2zz8ll81swf9.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3c9y2zz8ll81swf9.o new file mode 100644 index 0000000..2a52d95 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3c9y2zz8ll81swf9.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3cemxc9621trqy6g.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3cemxc9621trqy6g.o new file mode 100644 index 0000000..de60dae Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3cemxc9621trqy6g.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3o9g0372ldz0rq71.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3o9g0372ldz0rq71.o new file mode 100644 index 0000000..4fca521 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3o9g0372ldz0rq71.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3pxpcg0mwb99vse4.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3pxpcg0mwb99vse4.o new file mode 100644 index 0000000..3e13d5e Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3pxpcg0mwb99vse4.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3qu5bja0ms71evaz.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3qu5bja0ms71evaz.o new file mode 100644 index 0000000..bf569b1 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3qu5bja0ms71evaz.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3sjbf50332zqxze0.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3sjbf50332zqxze0.o new file mode 100644 index 0000000..311c981 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/3sjbf50332zqxze0.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/41pksw34zy9mm2l4.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/41pksw34zy9mm2l4.o new file mode 100644 index 0000000..2f10afb Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/41pksw34zy9mm2l4.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/43o3aja7zjb7bkdk.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/43o3aja7zjb7bkdk.o new file mode 100644 index 0000000..6887ff8 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/43o3aja7zjb7bkdk.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/46mra84kbyyh8pcg.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/46mra84kbyyh8pcg.o new file mode 100644 index 0000000..2217753 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/46mra84kbyyh8pcg.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4dvqi2xhfz7x9bpy.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4dvqi2xhfz7x9bpy.o new file mode 100644 index 0000000..75b989d Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4dvqi2xhfz7x9bpy.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4gwlpc3a1ic8bsxg.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4gwlpc3a1ic8bsxg.o new file mode 100644 index 0000000..263c589 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4gwlpc3a1ic8bsxg.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4kngdurslbjnpslt.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4kngdurslbjnpslt.o new file mode 100644 index 0000000..cf80d6f Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4kngdurslbjnpslt.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4ntg3vtf7u09860n.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4ntg3vtf7u09860n.o new file mode 100644 index 0000000..785d113 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4ntg3vtf7u09860n.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4ql5pyky6awjdhhj.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4ql5pyky6awjdhhj.o new file mode 100644 index 0000000..df86cfb Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/4ql5pyky6awjdhhj.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/517qysmbh8a6mvj3.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/517qysmbh8a6mvj3.o new file mode 100644 index 0000000..eb68fc8 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/517qysmbh8a6mvj3.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/55d1788rxbr1hi2c.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/55d1788rxbr1hi2c.o new file mode 100644 index 0000000..83c8329 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/55d1788rxbr1hi2c.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/5ek2e94ubnzny8rf.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/5ek2e94ubnzny8rf.o new file mode 100644 index 0000000..1e1db54 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/5ek2e94ubnzny8rf.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/dep-graph.bin b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/dep-graph.bin new file mode 100644 index 0000000..8dc0f3a Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/dep-graph.bin differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/fwep9ngjn4iv97m.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/fwep9ngjn4iv97m.o new file mode 100644 index 0000000..4947716 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/fwep9ngjn4iv97m.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/query-cache.bin b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/query-cache.bin new file mode 100644 index 0000000..898db7a Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/query-cache.bin differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/work-products.bin b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/work-products.bin new file mode 100644 index 0000000..481650b Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/work-products.bin differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/yv0sjk38ozhsf3i.o b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/yv0sjk38ozhsf3i.o new file mode 100644 index 0000000..92e17a3 Binary files /dev/null and b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4-2siq9m6lyk70p/yv0sjk38ozhsf3i.o differ diff --git a/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4.lock b/target/debug/incremental/csvcompare-918tzif6nnvi/s-g1vcsg4uzw-bjw5l4.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt-3rko5fuxa9yt7/dep-graph.bin b/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt-3rko5fuxa9yt7/dep-graph.bin new file mode 100644 index 0000000..03d1f3e Binary files /dev/null and b/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt-3rko5fuxa9yt7/dep-graph.bin differ diff --git a/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt-3rko5fuxa9yt7/query-cache.bin b/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt-3rko5fuxa9yt7/query-cache.bin new file mode 100644 index 0000000..c014afc Binary files /dev/null and b/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt-3rko5fuxa9yt7/query-cache.bin differ diff --git a/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt-3rko5fuxa9yt7/work-products.bin b/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt-3rko5fuxa9yt7/work-products.bin new file mode 100644 index 0000000..f7f4161 Binary files /dev/null and b/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt-3rko5fuxa9yt7/work-products.bin differ diff --git a/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt.lock b/target/debug/incremental/csvcompare-g5w3ulftwmi6/s-g1vcrclv5z-1xacdtt.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/libcsvcompare.d b/target/debug/libcsvcompare.d new file mode 100644 index 0000000..6762815 --- /dev/null +++ b/target/debug/libcsvcompare.d @@ -0,0 +1 @@ +/home/mace/repos/rust/csvcompare/target/debug/libcsvcompare.rlib: /home/mace/repos/rust/csvcompare/src/lib.rs diff --git a/target/debug/libcsvcompare.rlib b/target/debug/libcsvcompare.rlib new file mode 100644 index 0000000..c13d2a9 Binary files /dev/null and b/target/debug/libcsvcompare.rlib differ