diff --git a/Cargo.lock b/Cargo.lock index 94f09d5..13b44d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,15 +28,15 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "libc" -version = "0.2.108" +version = "0.2.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8521a1b57e76b1ec69af7599e75e38e7b7fad6610f037db8c79b127201b5d119" +checksum = "f98a04dce437184842841303488f70d0188c5f51437d2a834dc097eafa909a01" [[package]] name = "memoffset" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" +checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" dependencies = [ "autocfg", ] diff --git a/src/main.rs b/src/main.rs index b6720c5..7a1dec2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -use toml::{Value, toml}; +use toml::{Value}; use std::{fs, env}; use std::io::Write; @@ -13,7 +13,6 @@ pub fn help() { } pub fn create_database() { - let homepath = env::var("HOME").unwrap(); let file = "/usr/share/pkg_warner/pkg_mngrs.db".to_string(); if !std::path::Path::new(&"/usr/share/pkg_warner/").is_dir() { let _cdar = fs::create_dir_all("/usr/share/pkg_warner/".to_string()); @@ -30,7 +29,7 @@ pub fn create_database() { let result = connection .execute( " - CREATE TABLE pkg_mngrs (mngr TEXT, distro TEXT); + CREATE TABLE pkg_mngrs (mngr TEXT, distro TEXT, UNIQUE (mngr, distro)); ", ); match result { @@ -45,6 +44,17 @@ pub fn create_database() { pub fn add_mngrs(pkg_managers: Vec>, proper_manager: String) { let connection = sqlite::open("/usr/share/pkg_warner/pkg_mngrs.db".to_string()).unwrap(); + let result = connection.execute(format!( + "INSERT INTO pkg_mngrs (mngr,distro) VALUES (\"{}\",\"{}\")", + "proper_manager", proper_manager)); + match result { + Ok(_) => { + println!("Added {} to database", proper_manager); + } + Err(_) => { + println!("Couldn't add {} to database, maybe it already exists?", proper_manager); + } + } for entry in pkg_managers { println!("Don't use {}! {} is used on {}, here you use {}!", entry[0], entry[0], entry[1], proper_manager); let result = connection.execute(format!( @@ -57,7 +67,7 @@ pub fn add_mngrs(pkg_managers: Vec>, proper_manager: String) { println!("Added {} to database", entry[0]); } Err(_) => { - println!("Couldn't add {} to database", entry[0]); + println!("Couldn't add {} to database, maybe it already exists?", entry[0]); } } } @@ -69,6 +79,7 @@ pub fn create_script() { format!("SELECT mngr FROM pkg_mngrs WHERE mngr IS NOT \"proper_manager\";"), |pairs| { for &(_column, value) in pairs.iter() { + println!("{}", value.unwrap()); writeln!(&mut fs::File::create(format!("/usr/bin/{}",value.unwrap())).unwrap(), "#!/usr/bin/env bash\n pkg-warner -w {}", value.unwrap()).unwrap(); } true @@ -81,6 +92,50 @@ pub fn create_script() { } +pub fn dump_database() -> Vec { + let connection = sqlite::open("/usr/share/pkg_warner/pkg_mngrs.db").unwrap(); + let mut dump = Vec::new(); + let result = connection.iterate( + format!("SELECT mngr FROM pkg_mngrs WHERE mngr IS NOT \"proper_manager\";"), + |pairs| { + for &(_column, value) in pairs.iter() { + dump.push(value.unwrap().to_string()); + } + true + }, + ); + match result { + Ok(_) => {} + Err(_) => println!("Couldn't get value from database"), + } + return dump; +} + +pub fn rem_mngr(mngrs_to_remove: Vec) { + let connection = sqlite::open("/usr/share/pkg_warner/pkg_mngrs.db").unwrap(); + for mngr in mngrs_to_remove { + let result = fs::remove_file(format!("/usr/bin/{}", mngr)); + match result { + Ok(_) => { + println!("Removed {}", mngr); + } + Err(_) => { + println!("Couldn't remove {}", mngr); + } + } + let result = connection.execute(format!( + "DELETE FROM pkg_mngrs WHERE mngr = \"{}\"", mngr)); + match result { + Ok(_) => { + println!("Removed {} from database", mngr); + } + Err(_) => { + println!("Couldn't remove {} from database", mngr); + } + } + } +} + pub fn warn(proper_manager: String, package_manager: String) { let connection = sqlite::open("/usr/share/pkg_warner/pkg_mngrs.db".to_string()).unwrap(); let mut warned = false; @@ -123,35 +178,36 @@ fn main() { } let file = format!("/etc/package_managers.toml"); - let mut database = String::new(); - database = fs::read_to_string(file).expect("Unable to read file"); + let database = fs::read_to_string(file).expect("Unable to read file"); let db_parsed = database.parse::().expect("Unable to parse database"); let mut pkg_managers: Vec> = Vec::new(); + let proper_manager = db_parsed["proper_manager"].as_str().unwrap().to_string(); for entry in db_parsed.as_table() { for (key, value) in &*entry { let mut tempvec = Vec::new(); tempvec.push(key.to_string()); tempvec.push(value.to_string().replace("distro = ", "").replace("\n","").replace("\"","")); - pkg_managers.push(tempvec); + if !tempvec.contains(&proper_manager) { + pkg_managers.push(tempvec); + } + } } - let connection = sqlite::open("/usr/share/pkg_warner/pkg_mngrs.db").unwrap(); - let mut proper_manager = String::new(); - let mut found = false; - let result = connection.iterate( - format!("SELECT distro FROM pkg_mngrs WHERE mngr = \"proper_manager\";"), - |pairs| { - for &(_column, value) in pairs.iter() { - if !found { - proper_manager.push_str(value.unwrap()); - found = true; - } + let dat_mgrs = dump_database(); + let mut pkgs_to_remove: Vec = Vec::new(); + for i in dat_mgrs { + let mut in_conf = false; + for managers in &pkg_managers { + if managers.contains(&&i) { + in_conf = true; } - true - }, - ); - + } + if !in_conf { + pkgs_to_remove.push(i); + } + } + match oper.as_str() { "-i" | "init" => { create_database(); @@ -167,6 +223,12 @@ fn main() { "-w" | "warning" => { warn(proper_manager, args[1].to_string()); } + "-r" | "remove" => { + if !pkgs_to_remove.is_empty() { + println!("Removing {} from database", pkgs_to_remove.join(", ")); + rem_mngr(pkgs_to_remove); + } + } _ => { help(); } diff --git a/target/.rustc_info.json b/target/.rustc_info.json new file mode 100644 index 0000000..7e88baf --- /dev/null +++ b/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":5477439701816288269,"outputs":{"2797684049618456168":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: `-Csplit-debuginfo` is unstable on this platform\n\n"},"17598535894874457435":{"success":true,"status":"","code":0,"stdout":"rustc 1.56.1\nbinary: rustc\ncommit-hash: unknown\ncommit-date: unknown\nhost: x86_64-unknown-linux-gnu\nrelease: 1.56.1\nLLVM version: 13.0.0\n","stderr":""},"15537503139010883884":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n","stderr":""},"931469667778813386":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/nix/store/dmcb08cln9nlfacrfdzr176yhv1wwl9s-rustc-1.56.1\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 diff --git a/target/CACHEDIR.TAG b/target/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/target/debug/.cargo-lock b/target/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/dep-lib-autocfg b/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/dep-lib-autocfg new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/dep-lib-autocfg differ diff --git a/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/invoked.timestamp b/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/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/autocfg-d0f3568de4ac8b4f/lib-autocfg b/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/lib-autocfg new file mode 100644 index 0000000..ad0b819 --- /dev/null +++ b/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/lib-autocfg @@ -0,0 +1 @@ +4ea539d6bd6162c5 \ No newline at end of file diff --git a/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/lib-autocfg.json b/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/lib-autocfg.json new file mode 100644 index 0000000..df83d9c --- /dev/null +++ b/target/debug/.fingerprint/autocfg-d0f3568de4ac8b4f/lib-autocfg.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[]","target":10236397793970852656,"profile":12637318739757120569,"path":15907198900034124300,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-d0f3568de4ac8b4f/dep-lib-autocfg"}}],"rustflags":[],"metadata":13102859075309379048,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/dep-lib-bitflags b/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/dep-lib-bitflags new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/dep-lib-bitflags differ diff --git a/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/invoked.timestamp b/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/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/bitflags-0d597eea5c6c9299/lib-bitflags b/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/lib-bitflags new file mode 100644 index 0000000..463d29a --- /dev/null +++ b/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/lib-bitflags @@ -0,0 +1 @@ +dbb9012ac66f14c9 \ No newline at end of file diff --git a/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/lib-bitflags.json b/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/lib-bitflags.json new file mode 100644 index 0000000..9235313 --- /dev/null +++ b/target/debug/.fingerprint/bitflags-0d597eea5c6c9299/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"default\"]","target":7112745982619283648,"profile":3735503092003429423,"path":17193859861115388445,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-0d597eea5c6c9299/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/cc-b7b73ee25341f9d1/dep-lib-cc b/target/debug/.fingerprint/cc-b7b73ee25341f9d1/dep-lib-cc new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/cc-b7b73ee25341f9d1/dep-lib-cc differ diff --git a/target/debug/.fingerprint/cc-b7b73ee25341f9d1/invoked.timestamp b/target/debug/.fingerprint/cc-b7b73ee25341f9d1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/cc-b7b73ee25341f9d1/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/cc-b7b73ee25341f9d1/lib-cc b/target/debug/.fingerprint/cc-b7b73ee25341f9d1/lib-cc new file mode 100644 index 0000000..06e3996 --- /dev/null +++ b/target/debug/.fingerprint/cc-b7b73ee25341f9d1/lib-cc @@ -0,0 +1 @@ +0309cbead1e9740c \ No newline at end of file diff --git a/target/debug/.fingerprint/cc-b7b73ee25341f9d1/lib-cc.json b/target/debug/.fingerprint/cc-b7b73ee25341f9d1/lib-cc.json new file mode 100644 index 0000000..62ca535 --- /dev/null +++ b/target/debug/.fingerprint/cc-b7b73ee25341f9d1/lib-cc.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[]","target":2793076990717341772,"profile":12637318739757120569,"path":12492160900094230388,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cc-b7b73ee25341f9d1/dep-lib-cc"}}],"rustflags":[],"metadata":16504835547841594983,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/cfg-if-01728933ff8322ec/dep-lib-cfg-if b/target/debug/.fingerprint/cfg-if-01728933ff8322ec/dep-lib-cfg-if new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/cfg-if-01728933ff8322ec/dep-lib-cfg-if differ diff --git a/target/debug/.fingerprint/cfg-if-01728933ff8322ec/invoked.timestamp b/target/debug/.fingerprint/cfg-if-01728933ff8322ec/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/cfg-if-01728933ff8322ec/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/cfg-if-01728933ff8322ec/lib-cfg-if b/target/debug/.fingerprint/cfg-if-01728933ff8322ec/lib-cfg-if new file mode 100644 index 0000000..3a8c47e --- /dev/null +++ b/target/debug/.fingerprint/cfg-if-01728933ff8322ec/lib-cfg-if @@ -0,0 +1 @@ +6d536f672c55cb16 \ No newline at end of file diff --git a/target/debug/.fingerprint/cfg-if-01728933ff8322ec/lib-cfg-if.json b/target/debug/.fingerprint/cfg-if-01728933ff8322ec/lib-cfg-if.json new file mode 100644 index 0000000..e69e5dd --- /dev/null +++ b/target/debug/.fingerprint/cfg-if-01728933ff8322ec/lib-cfg-if.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[]","target":10094334937643343087,"profile":3735503092003429423,"path":1842211354858582184,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-01728933ff8322ec/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-0153ac2f9c726b3a/build-script-build-script-build b/target/debug/.fingerprint/libc-0153ac2f9c726b3a/build-script-build-script-build new file mode 100644 index 0000000..271f839 --- /dev/null +++ b/target/debug/.fingerprint/libc-0153ac2f9c726b3a/build-script-build-script-build @@ -0,0 +1 @@ +628d5f4389966fd3 \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-0153ac2f9c726b3a/build-script-build-script-build.json b/target/debug/.fingerprint/libc-0153ac2f9c726b3a/build-script-build-script-build.json new file mode 100644 index 0000000..ad2ac0f --- /dev/null +++ b/target/debug/.fingerprint/libc-0153ac2f9c726b3a/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"default\", \"extra_traits\", \"std\"]","target":2709041430195671023,"profile":12637318739757120569,"path":1657727889642408025,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-0153ac2f9c726b3a/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-0153ac2f9c726b3a/dep-build-script-build-script-build b/target/debug/.fingerprint/libc-0153ac2f9c726b3a/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/libc-0153ac2f9c726b3a/dep-build-script-build-script-build differ diff --git a/target/debug/.fingerprint/libc-0153ac2f9c726b3a/invoked.timestamp b/target/debug/.fingerprint/libc-0153ac2f9c726b3a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/libc-0153ac2f9c726b3a/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/libc-875039f65e722711/run-build-script-build-script-build b/target/debug/.fingerprint/libc-875039f65e722711/run-build-script-build-script-build new file mode 100644 index 0000000..d846454 --- /dev/null +++ b/target/debug/.fingerprint/libc-875039f65e722711/run-build-script-build-script-build @@ -0,0 +1 @@ +e4d46bfc2833a18b \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-875039f65e722711/run-build-script-build-script-build.json b/target/debug/.fingerprint/libc-875039f65e722711/run-build-script-build-script-build.json new file mode 100644 index 0000000..df544bd --- /dev/null +++ b/target/debug/.fingerprint/libc-875039f65e722711/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"","target":0,"profile":0,"path":0,"deps":[[4238752198363657571,"build_script_build",false,15235561580702698850]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-875039f65e722711/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-fb699e584894b098/dep-lib-libc b/target/debug/.fingerprint/libc-fb699e584894b098/dep-lib-libc new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/libc-fb699e584894b098/dep-lib-libc differ diff --git a/target/debug/.fingerprint/libc-fb699e584894b098/invoked.timestamp b/target/debug/.fingerprint/libc-fb699e584894b098/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/libc-fb699e584894b098/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/libc-fb699e584894b098/lib-libc b/target/debug/.fingerprint/libc-fb699e584894b098/lib-libc new file mode 100644 index 0000000..8031307 --- /dev/null +++ b/target/debug/.fingerprint/libc-fb699e584894b098/lib-libc @@ -0,0 +1 @@ +664b63df7e9bfcd9 \ No newline at end of file diff --git a/target/debug/.fingerprint/libc-fb699e584894b098/lib-libc.json b/target/debug/.fingerprint/libc-fb699e584894b098/lib-libc.json new file mode 100644 index 0000000..982c580 --- /dev/null +++ b/target/debug/.fingerprint/libc-fb699e584894b098/lib-libc.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"default\", \"extra_traits\", \"std\"]","target":15721753382687865320,"profile":3735503092003429423,"path":12860032275309791990,"deps":[[4238752198363657571,"build_script_build",false,10061379293649032420]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-fb699e584894b098/dep-lib-libc"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-1b94ae81ce5b9c8c/run-build-script-build-script-build b/target/debug/.fingerprint/memoffset-1b94ae81ce5b9c8c/run-build-script-build-script-build new file mode 100644 index 0000000..b366a00 --- /dev/null +++ b/target/debug/.fingerprint/memoffset-1b94ae81ce5b9c8c/run-build-script-build-script-build @@ -0,0 +1 @@ +c6d2d97caa99d2ab \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-1b94ae81ce5b9c8c/run-build-script-build-script-build.json b/target/debug/.fingerprint/memoffset-1b94ae81ce5b9c8c/run-build-script-build-script-build.json new file mode 100644 index 0000000..9bcf758 --- /dev/null +++ b/target/debug/.fingerprint/memoffset-1b94ae81ce5b9c8c/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"","target":0,"profile":0,"path":0,"deps":[[6458888162066361806,"build_script_build",false,9534688773718435817]],"local":[{"Precalculated":"0.6.5"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-8c633a2205f68701/dep-lib-memoffset b/target/debug/.fingerprint/memoffset-8c633a2205f68701/dep-lib-memoffset new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/memoffset-8c633a2205f68701/dep-lib-memoffset differ diff --git a/target/debug/.fingerprint/memoffset-8c633a2205f68701/invoked.timestamp b/target/debug/.fingerprint/memoffset-8c633a2205f68701/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/memoffset-8c633a2205f68701/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/memoffset-8c633a2205f68701/lib-memoffset b/target/debug/.fingerprint/memoffset-8c633a2205f68701/lib-memoffset new file mode 100644 index 0000000..687747f --- /dev/null +++ b/target/debug/.fingerprint/memoffset-8c633a2205f68701/lib-memoffset @@ -0,0 +1 @@ +93faa318daeb46d5 \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-8c633a2205f68701/lib-memoffset.json b/target/debug/.fingerprint/memoffset-8c633a2205f68701/lib-memoffset.json new file mode 100644 index 0000000..26008a0 --- /dev/null +++ b/target/debug/.fingerprint/memoffset-8c633a2205f68701/lib-memoffset.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"default\"]","target":16725475512136635640,"profile":3735503092003429423,"path":18064435451994845480,"deps":[[6458888162066361806,"build_script_build",false,12381127283113054918]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memoffset-8c633a2205f68701/dep-lib-memoffset"}}],"rustflags":[],"metadata":1371205671251306698,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/build-script-build-script-build b/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/build-script-build-script-build new file mode 100644 index 0000000..222dfdf --- /dev/null +++ b/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/build-script-build-script-build @@ -0,0 +1 @@ +e9676439ec045284 \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/build-script-build-script-build.json b/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/build-script-build-script-build.json new file mode 100644 index 0000000..209d3df --- /dev/null +++ b/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"default\"]","target":2709041430195671023,"profile":12637318739757120569,"path":9913201070585952670,"deps":[[12718412902330781859,"autocfg",false,14223038041160262990]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memoffset-9911cd2d9b20ea8f/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":1371205671251306698,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/dep-build-script-build-script-build b/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/dep-build-script-build-script-build differ diff --git a/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/invoked.timestamp b/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/memoffset-9911cd2d9b20ea8f/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/nix-70965ac305032031/dep-lib-nix b/target/debug/.fingerprint/nix-70965ac305032031/dep-lib-nix new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/nix-70965ac305032031/dep-lib-nix differ diff --git a/target/debug/.fingerprint/nix-70965ac305032031/invoked.timestamp b/target/debug/.fingerprint/nix-70965ac305032031/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/nix-70965ac305032031/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/nix-70965ac305032031/lib-nix b/target/debug/.fingerprint/nix-70965ac305032031/lib-nix new file mode 100644 index 0000000..47e7357 --- /dev/null +++ b/target/debug/.fingerprint/nix-70965ac305032031/lib-nix @@ -0,0 +1 @@ +7627935addde508b \ No newline at end of file diff --git a/target/debug/.fingerprint/nix-70965ac305032031/lib-nix.json b/target/debug/.fingerprint/nix-70965ac305032031/lib-nix.json new file mode 100644 index 0000000..b370c5b --- /dev/null +++ b/target/debug/.fingerprint/nix-70965ac305032031/lib-nix.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[]","target":5641809725606152361,"profile":3735503092003429423,"path":18313757918874396510,"deps":[[2452538001284770427,"cfg_if",false,1642500138308948845],[4238752198363657571,"libc",false,15707600569577458534],[6458888162066361806,"memoffset",false,15368230100397193875],[14051957667571541382,"bitflags",false,14489328798056692187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-70965ac305032031/dep-lib-nix"}}],"rustflags":[],"metadata":7592889295042356366,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-config-46002c4c55931941/dep-lib-pkg-config b/target/debug/.fingerprint/pkg-config-46002c4c55931941/dep-lib-pkg-config new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/pkg-config-46002c4c55931941/dep-lib-pkg-config differ diff --git a/target/debug/.fingerprint/pkg-config-46002c4c55931941/invoked.timestamp b/target/debug/.fingerprint/pkg-config-46002c4c55931941/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/pkg-config-46002c4c55931941/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/pkg-config-46002c4c55931941/lib-pkg-config b/target/debug/.fingerprint/pkg-config-46002c4c55931941/lib-pkg-config new file mode 100644 index 0000000..6f8ab0a --- /dev/null +++ b/target/debug/.fingerprint/pkg-config-46002c4c55931941/lib-pkg-config @@ -0,0 +1 @@ +b000e3b7ab326801 \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-config-46002c4c55931941/lib-pkg-config.json b/target/debug/.fingerprint/pkg-config-46002c4c55931941/lib-pkg-config.json new file mode 100644 index 0000000..a34d1f7 --- /dev/null +++ b/target/debug/.fingerprint/pkg-config-46002c4c55931941/lib-pkg-config.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[]","target":6082314838881920084,"profile":12637318739757120569,"path":8901256983768991602,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pkg-config-46002c4c55931941/dep-lib-pkg-config"}}],"rustflags":[],"metadata":6346311810227624339,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/dep-test-bin-pkg-warner b/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/dep-test-bin-pkg-warner new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/dep-test-bin-pkg-warner differ diff --git a/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/invoked.timestamp b/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/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/pkg-warner-11f4f6dda71df57c/test-bin-pkg-warner b/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/test-bin-pkg-warner new file mode 100644 index 0000000..5ce4f30 --- /dev/null +++ b/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/test-bin-pkg-warner @@ -0,0 +1 @@ +5601a7072f2f8798 \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/test-bin-pkg-warner.json b/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/test-bin-pkg-warner.json new file mode 100644 index 0000000..763e9bd --- /dev/null +++ b/target/debug/.fingerprint/pkg-warner-11f4f6dda71df57c/test-bin-pkg-warner.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[]","target":6118487853572589356,"profile":1021633075455700787,"path":1036222786711178230,"deps":[[4474423794295783571,"toml",false,13740282220423633566],[14281004470088548636,"nix",false,10038768611697567606],[14820404483268411614,"sqlite",false,6635522829886594309]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pkg-warner-11f4f6dda71df57c/dep-test-bin-pkg-warner"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/bin-pkg-warner b/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/bin-pkg-warner new file mode 100644 index 0000000..e63c260 --- /dev/null +++ b/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/bin-pkg-warner @@ -0,0 +1 @@ +1f2bcf836930f688 \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/bin-pkg-warner.json b/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/bin-pkg-warner.json new file mode 100644 index 0000000..72bc0a1 --- /dev/null +++ b/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/bin-pkg-warner.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[]","target":6118487853572589356,"profile":7309141686862299243,"path":1036222786711178230,"deps":[[4474423794295783571,"toml",false,13740282220423633566],[14281004470088548636,"nix",false,10038768611697567606],[14820404483268411614,"sqlite",false,6635522829886594309]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pkg-warner-95de65d2baa42f48/dep-bin-pkg-warner"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/dep-bin-pkg-warner b/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/dep-bin-pkg-warner new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/dep-bin-pkg-warner differ diff --git a/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/invoked.timestamp b/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/pkg-warner-95de65d2baa42f48/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/serde-080ca2b3fd4c480c/dep-lib-serde b/target/debug/.fingerprint/serde-080ca2b3fd4c480c/dep-lib-serde new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/serde-080ca2b3fd4c480c/dep-lib-serde differ diff --git a/target/debug/.fingerprint/serde-080ca2b3fd4c480c/invoked.timestamp b/target/debug/.fingerprint/serde-080ca2b3fd4c480c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/serde-080ca2b3fd4c480c/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/serde-080ca2b3fd4c480c/lib-serde b/target/debug/.fingerprint/serde-080ca2b3fd4c480c/lib-serde new file mode 100644 index 0000000..08d53df --- /dev/null +++ b/target/debug/.fingerprint/serde-080ca2b3fd4c480c/lib-serde @@ -0,0 +1 @@ +775b595fb9c0724f \ No newline at end of file diff --git a/target/debug/.fingerprint/serde-080ca2b3fd4c480c/lib-serde.json b/target/debug/.fingerprint/serde-080ca2b3fd4c480c/lib-serde.json new file mode 100644 index 0000000..5af8db2 --- /dev/null +++ b/target/debug/.fingerprint/serde-080ca2b3fd4c480c/lib-serde.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"default\", \"std\"]","target":15771919462364234457,"profile":3735503092003429423,"path":12176725181393656138,"deps":[[2736883952593840243,"build_script_build",false,15664705210452328843]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-080ca2b3fd4c480c/dep-lib-serde"}}],"rustflags":[],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/serde-3dba5bede4ca3701/run-build-script-build-script-build b/target/debug/.fingerprint/serde-3dba5bede4ca3701/run-build-script-build-script-build new file mode 100644 index 0000000..59fb09f --- /dev/null +++ b/target/debug/.fingerprint/serde-3dba5bede4ca3701/run-build-script-build-script-build @@ -0,0 +1 @@ +8bc138cc643664d9 \ No newline at end of file diff --git a/target/debug/.fingerprint/serde-3dba5bede4ca3701/run-build-script-build-script-build.json b/target/debug/.fingerprint/serde-3dba5bede4ca3701/run-build-script-build-script-build.json new file mode 100644 index 0000000..1d2f4ab --- /dev/null +++ b/target/debug/.fingerprint/serde-3dba5bede4ca3701/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"","target":0,"profile":0,"path":0,"deps":[[2736883952593840243,"build_script_build",false,16749067537441452386]],"local":[{"Precalculated":"1.0.130"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/serde-ae9a1e01cff47d82/build-script-build-script-build b/target/debug/.fingerprint/serde-ae9a1e01cff47d82/build-script-build-script-build new file mode 100644 index 0000000..6d7f7ba --- /dev/null +++ b/target/debug/.fingerprint/serde-ae9a1e01cff47d82/build-script-build-script-build @@ -0,0 +1 @@ +627139582fa470e8 \ No newline at end of file diff --git a/target/debug/.fingerprint/serde-ae9a1e01cff47d82/build-script-build-script-build.json b/target/debug/.fingerprint/serde-ae9a1e01cff47d82/build-script-build-script-build.json new file mode 100644 index 0000000..fd724e3 --- /dev/null +++ b/target/debug/.fingerprint/serde-ae9a1e01cff47d82/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"default\", \"std\"]","target":2709041430195671023,"profile":12637318739757120569,"path":8918499710304126694,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-ae9a1e01cff47d82/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/serde-ae9a1e01cff47d82/dep-build-script-build-script-build b/target/debug/.fingerprint/serde-ae9a1e01cff47d82/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/serde-ae9a1e01cff47d82/dep-build-script-build-script-build differ diff --git a/target/debug/.fingerprint/serde-ae9a1e01cff47d82/invoked.timestamp b/target/debug/.fingerprint/serde-ae9a1e01cff47d82/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/serde-ae9a1e01cff47d82/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/sqlite-54e35233c930c3a9/dep-lib-sqlite b/target/debug/.fingerprint/sqlite-54e35233c930c3a9/dep-lib-sqlite new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/sqlite-54e35233c930c3a9/dep-lib-sqlite differ diff --git a/target/debug/.fingerprint/sqlite-54e35233c930c3a9/invoked.timestamp b/target/debug/.fingerprint/sqlite-54e35233c930c3a9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/sqlite-54e35233c930c3a9/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/sqlite-54e35233c930c3a9/lib-sqlite b/target/debug/.fingerprint/sqlite-54e35233c930c3a9/lib-sqlite new file mode 100644 index 0000000..f209c85 --- /dev/null +++ b/target/debug/.fingerprint/sqlite-54e35233c930c3a9/lib-sqlite @@ -0,0 +1 @@ +059d6276db1c165c \ No newline at end of file diff --git a/target/debug/.fingerprint/sqlite-54e35233c930c3a9/lib-sqlite.json b/target/debug/.fingerprint/sqlite-54e35233c930c3a9/lib-sqlite.json new file mode 100644 index 0000000..4c6cc9c --- /dev/null +++ b/target/debug/.fingerprint/sqlite-54e35233c930c3a9/lib-sqlite.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"default\", \"linkage\"]","target":8136278550025260189,"profile":3735503092003429423,"path":7654351504928937179,"deps":[[4238752198363657571,"libc",false,15707600569577458534],[9359886142961491594,"sqlite3_sys",false,1462668660281886823]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sqlite-54e35233c930c3a9/dep-lib-sqlite"}}],"rustflags":[],"metadata":3045830345976636886,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/dep-lib-sqlite3-src b/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/dep-lib-sqlite3-src new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/dep-lib-sqlite3-src differ diff --git a/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/invoked.timestamp b/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/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/sqlite3-src-40cfe2480587bad9/lib-sqlite3-src b/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/lib-sqlite3-src new file mode 100644 index 0000000..402d7cc --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/lib-sqlite3-src @@ -0,0 +1 @@ +80327a21a20a4c19 \ No newline at end of file diff --git a/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/lib-sqlite3-src.json b/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/lib-sqlite3-src.json new file mode 100644 index 0000000..931040f --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-src-40cfe2480587bad9/lib-sqlite3-src.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[]","target":5789449429982314391,"profile":3735503092003429423,"path":13361965421518482827,"deps":[[10764015216467278682,"build_script_build",false,3960523353745970486]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sqlite3-src-40cfe2480587bad9/dep-lib-sqlite3-src"}}],"rustflags":[],"metadata":357046978209590333,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/sqlite3-src-afae0c93eda861c3/run-build-script-build-script-build b/target/debug/.fingerprint/sqlite3-src-afae0c93eda861c3/run-build-script-build-script-build new file mode 100644 index 0000000..5139b42 --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-src-afae0c93eda861c3/run-build-script-build-script-build @@ -0,0 +1 @@ +36d5aaa8019bf636 \ No newline at end of file diff --git a/target/debug/.fingerprint/sqlite3-src-afae0c93eda861c3/run-build-script-build-script-build.json b/target/debug/.fingerprint/sqlite3-src-afae0c93eda861c3/run-build-script-build-script-build.json new file mode 100644 index 0000000..fdb7d60 --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-src-afae0c93eda861c3/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"","target":0,"profile":0,"path":0,"deps":[[10764015216467278682,"build_script_build",false,13150373422026264957]],"local":[{"RerunIfEnvChanged":{"var":"SQLITE3_NO_PKG_CONFIG","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG","val":null}},{"RerunIfEnvChanged":{"var":"SQLITE3_STATIC","val":null}},{"RerunIfEnvChanged":{"var":"SQLITE3_DYNAMIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_ALL_STATIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_ALL_DYNAMIC","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_PATH_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_PATH_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG_PATH","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_PATH","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_LIBDIR_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_LIBDIR_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG_LIBDIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_LIBDIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_PKG_CONFIG_SYSROOT_DIR","val":null}},{"RerunIfEnvChanged":{"var":"PKG_CONFIG_SYSROOT_DIR","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/build-script-build-script-build b/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/build-script-build-script-build new file mode 100644 index 0000000..e318cdd --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/build-script-build-script-build @@ -0,0 +1 @@ +7d119d23f4827fb6 \ No newline at end of file diff --git a/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/build-script-build-script-build.json b/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/build-script-build-script-build.json new file mode 100644 index 0000000..5bac441 --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[]","target":2709041430195671023,"profile":12637318739757120569,"path":13523873326065766804,"deps":[[10048195576198893218,"pkg_config",false,101386704721739952],[10740982169257302999,"cc",false,897599313550182659]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":357046978209590333,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/dep-build-script-build-script-build b/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/dep-build-script-build-script-build differ diff --git a/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/invoked.timestamp b/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-src-ed28aa5ca2ea29f3/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/sqlite3-sys-62cae4fd1e27465c/dep-lib-sqlite3-sys b/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/dep-lib-sqlite3-sys new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/dep-lib-sqlite3-sys differ diff --git a/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/invoked.timestamp b/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/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/sqlite3-sys-62cae4fd1e27465c/lib-sqlite3-sys b/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/lib-sqlite3-sys new file mode 100644 index 0000000..38712ff --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/lib-sqlite3-sys @@ -0,0 +1 @@ +67c832a065714c14 \ No newline at end of file diff --git a/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/lib-sqlite3-sys.json b/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/lib-sqlite3-sys.json new file mode 100644 index 0000000..a42d6db --- /dev/null +++ b/target/debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/lib-sqlite3-sys.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"linkage\", \"sqlite3-src\"]","target":13424289001282176565,"profile":3735503092003429423,"path":14777714684876047562,"deps":[[4238752198363657571,"libc",false,15707600569577458534],[10764015216467278682,"sqlite3_src",false,1822843640640844416]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sqlite3-sys-62cae4fd1e27465c/dep-lib-sqlite3-sys"}}],"rustflags":[],"metadata":3932933143654036,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/toml-42e2df915f8b10a4/dep-lib-toml b/target/debug/.fingerprint/toml-42e2df915f8b10a4/dep-lib-toml new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/debug/.fingerprint/toml-42e2df915f8b10a4/dep-lib-toml differ diff --git a/target/debug/.fingerprint/toml-42e2df915f8b10a4/invoked.timestamp b/target/debug/.fingerprint/toml-42e2df915f8b10a4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/toml-42e2df915f8b10a4/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/toml-42e2df915f8b10a4/lib-toml b/target/debug/.fingerprint/toml-42e2df915f8b10a4/lib-toml new file mode 100644 index 0000000..d8c12c9 --- /dev/null +++ b/target/debug/.fingerprint/toml-42e2df915f8b10a4/lib-toml @@ -0,0 +1 @@ +9e5af75de149afbe \ No newline at end of file diff --git a/target/debug/.fingerprint/toml-42e2df915f8b10a4/lib-toml.json b/target/debug/.fingerprint/toml-42e2df915f8b10a4/lib-toml.json new file mode 100644 index 0000000..1e152b2 --- /dev/null +++ b/target/debug/.fingerprint/toml-42e2df915f8b10a4/lib-toml.json @@ -0,0 +1 @@ +{"rustc":6373711192271157243,"features":"[\"default\"]","target":13462643144348829615,"profile":3735503092003429423,"path":13782765692360200938,"deps":[[2736883952593840243,"serde",false,5724849978742496119]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/toml-42e2df915f8b10a4/dep-lib-toml"}}],"rustflags":[],"metadata":15823223228428447826,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/build/libc-0153ac2f9c726b3a/build-script-build b/target/debug/build/libc-0153ac2f9c726b3a/build-script-build new file mode 100755 index 0000000..6a00380 Binary files /dev/null and b/target/debug/build/libc-0153ac2f9c726b3a/build-script-build differ diff --git a/target/debug/build/libc-0153ac2f9c726b3a/build_script_build-0153ac2f9c726b3a b/target/debug/build/libc-0153ac2f9c726b3a/build_script_build-0153ac2f9c726b3a new file mode 100755 index 0000000..6a00380 Binary files /dev/null and b/target/debug/build/libc-0153ac2f9c726b3a/build_script_build-0153ac2f9c726b3a differ diff --git a/target/debug/build/libc-0153ac2f9c726b3a/build_script_build-0153ac2f9c726b3a.d b/target/debug/build/libc-0153ac2f9c726b3a/build_script_build-0153ac2f9c726b3a.d new file mode 100644 index 0000000..1abfa36 --- /dev/null +++ b/target/debug/build/libc-0153ac2f9c726b3a/build_script_build-0153ac2f9c726b3a.d @@ -0,0 +1,5 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/build/libc-0153ac2f9c726b3a/build_script_build-0153ac2f9c726b3a: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/build.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/build/libc-0153ac2f9c726b3a/build_script_build-0153ac2f9c726b3a.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/build.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/build.rs: diff --git a/target/debug/build/libc-875039f65e722711/invoked.timestamp b/target/debug/build/libc-875039f65e722711/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/build/libc-875039f65e722711/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/build/libc-875039f65e722711/output b/target/debug/build/libc-875039f65e722711/output new file mode 100644 index 0000000..e6919a7 --- /dev/null +++ b/target/debug/build/libc-875039f65e722711/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=freebsd11 +cargo:rustc-cfg=libc_priv_mod_use +cargo:rustc-cfg=libc_union +cargo:rustc-cfg=libc_const_size_of +cargo:rustc-cfg=libc_align +cargo:rustc-cfg=libc_core_cvoid +cargo:rustc-cfg=libc_packedN +cargo:rustc-cfg=libc_cfg_target_vendor +cargo:rustc-cfg=libc_non_exhaustive +cargo:rustc-cfg=libc_ptr_addr_of diff --git a/target/debug/build/libc-875039f65e722711/root-output b/target/debug/build/libc-875039f65e722711/root-output new file mode 100644 index 0000000..8cd8843 --- /dev/null +++ b/target/debug/build/libc-875039f65e722711/root-output @@ -0,0 +1 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/build/libc-875039f65e722711/out \ No newline at end of file diff --git a/target/debug/build/libc-875039f65e722711/stderr b/target/debug/build/libc-875039f65e722711/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/build/memoffset-1b94ae81ce5b9c8c/invoked.timestamp b/target/debug/build/memoffset-1b94ae81ce5b9c8c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/build/memoffset-1b94ae81ce5b9c8c/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/build/memoffset-1b94ae81ce5b9c8c/out/probe0.ll b/target/debug/build/memoffset-1b94ae81ce5b9c8c/out/probe0.ll new file mode 100644 index 0000000..296297c --- /dev/null +++ b/target/debug/build/memoffset-1b94ae81ce5b9c8c/out/probe0.ll @@ -0,0 +1,9 @@ +; ModuleID = 'probe0.3041c4be-cgu.0' +source_filename = "probe0.3041c4be-cgu.0" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-unknown-linux-gnu" + +!llvm.module.flags = !{!0, !1} + +!0 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 2, !"RtLibUseGOT", i32 1} diff --git a/target/debug/build/memoffset-1b94ae81ce5b9c8c/output b/target/debug/build/memoffset-1b94ae81ce5b9c8c/output new file mode 100644 index 0000000..45e8868 --- /dev/null +++ b/target/debug/build/memoffset-1b94ae81ce5b9c8c/output @@ -0,0 +1,5 @@ +cargo:rustc-cfg=tuple_ty +cargo:rustc-cfg=allow_clippy +cargo:rustc-cfg=maybe_uninit +cargo:rustc-cfg=doctests +cargo:rustc-cfg=raw_ref_macros diff --git a/target/debug/build/memoffset-1b94ae81ce5b9c8c/root-output b/target/debug/build/memoffset-1b94ae81ce5b9c8c/root-output new file mode 100644 index 0000000..4f4daa0 --- /dev/null +++ b/target/debug/build/memoffset-1b94ae81ce5b9c8c/root-output @@ -0,0 +1 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/build/memoffset-1b94ae81ce5b9c8c/out \ No newline at end of file diff --git a/target/debug/build/memoffset-1b94ae81ce5b9c8c/stderr b/target/debug/build/memoffset-1b94ae81ce5b9c8c/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/build/memoffset-9911cd2d9b20ea8f/build-script-build b/target/debug/build/memoffset-9911cd2d9b20ea8f/build-script-build new file mode 100755 index 0000000..1a7cc1e Binary files /dev/null and b/target/debug/build/memoffset-9911cd2d9b20ea8f/build-script-build differ diff --git a/target/debug/build/memoffset-9911cd2d9b20ea8f/build_script_build-9911cd2d9b20ea8f b/target/debug/build/memoffset-9911cd2d9b20ea8f/build_script_build-9911cd2d9b20ea8f new file mode 100755 index 0000000..1a7cc1e Binary files /dev/null and b/target/debug/build/memoffset-9911cd2d9b20ea8f/build_script_build-9911cd2d9b20ea8f differ diff --git a/target/debug/build/memoffset-9911cd2d9b20ea8f/build_script_build-9911cd2d9b20ea8f.d b/target/debug/build/memoffset-9911cd2d9b20ea8f/build_script_build-9911cd2d9b20ea8f.d new file mode 100644 index 0000000..92af9d2 --- /dev/null +++ b/target/debug/build/memoffset-9911cd2d9b20ea8f/build_script_build-9911cd2d9b20ea8f.d @@ -0,0 +1,5 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/build/memoffset-9911cd2d9b20ea8f/build_script_build-9911cd2d9b20ea8f: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/build.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/build/memoffset-9911cd2d9b20ea8f/build_script_build-9911cd2d9b20ea8f.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/build.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/build.rs: diff --git a/target/debug/build/serde-3dba5bede4ca3701/invoked.timestamp b/target/debug/build/serde-3dba5bede4ca3701/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/build/serde-3dba5bede4ca3701/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/build/serde-3dba5bede4ca3701/output b/target/debug/build/serde-3dba5bede4ca3701/output new file mode 100644 index 0000000..007710f --- /dev/null +++ b/target/debug/build/serde-3dba5bede4ca3701/output @@ -0,0 +1,16 @@ +cargo:rustc-cfg=ops_bound +cargo:rustc-cfg=core_reverse +cargo:rustc-cfg=de_boxed_c_str +cargo:rustc-cfg=de_boxed_path +cargo:rustc-cfg=de_rc_dst +cargo:rustc-cfg=core_duration +cargo:rustc-cfg=integer128 +cargo:rustc-cfg=range_inclusive +cargo:rustc-cfg=iterator_try_fold +cargo:rustc-cfg=num_nonzero +cargo:rustc-cfg=serde_derive +cargo:rustc-cfg=core_try_from +cargo:rustc-cfg=num_nonzero_signed +cargo:rustc-cfg=systemtime_checked_add +cargo:rustc-cfg=std_atomic64 +cargo:rustc-cfg=std_atomic diff --git a/target/debug/build/serde-3dba5bede4ca3701/root-output b/target/debug/build/serde-3dba5bede4ca3701/root-output new file mode 100644 index 0000000..9ae68e1 --- /dev/null +++ b/target/debug/build/serde-3dba5bede4ca3701/root-output @@ -0,0 +1 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/build/serde-3dba5bede4ca3701/out \ No newline at end of file diff --git a/target/debug/build/serde-3dba5bede4ca3701/stderr b/target/debug/build/serde-3dba5bede4ca3701/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/build/serde-ae9a1e01cff47d82/build-script-build b/target/debug/build/serde-ae9a1e01cff47d82/build-script-build new file mode 100755 index 0000000..799857d Binary files /dev/null and b/target/debug/build/serde-ae9a1e01cff47d82/build-script-build differ diff --git a/target/debug/build/serde-ae9a1e01cff47d82/build_script_build-ae9a1e01cff47d82 b/target/debug/build/serde-ae9a1e01cff47d82/build_script_build-ae9a1e01cff47d82 new file mode 100755 index 0000000..799857d Binary files /dev/null and b/target/debug/build/serde-ae9a1e01cff47d82/build_script_build-ae9a1e01cff47d82 differ diff --git a/target/debug/build/serde-ae9a1e01cff47d82/build_script_build-ae9a1e01cff47d82.d b/target/debug/build/serde-ae9a1e01cff47d82/build_script_build-ae9a1e01cff47d82.d new file mode 100644 index 0000000..9e101e7 --- /dev/null +++ b/target/debug/build/serde-ae9a1e01cff47d82/build_script_build-ae9a1e01cff47d82.d @@ -0,0 +1,5 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/build/serde-ae9a1e01cff47d82/build_script_build-ae9a1e01cff47d82: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/build.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/build/serde-ae9a1e01cff47d82/build_script_build-ae9a1e01cff47d82.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/build.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/build.rs: diff --git a/target/debug/build/sqlite3-src-afae0c93eda861c3/invoked.timestamp b/target/debug/build/sqlite3-src-afae0c93eda861c3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/build/sqlite3-src-afae0c93eda861c3/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/build/sqlite3-src-afae0c93eda861c3/out/libsqlite3.a b/target/debug/build/sqlite3-src-afae0c93eda861c3/out/libsqlite3.a new file mode 100644 index 0000000..077ba08 Binary files /dev/null and b/target/debug/build/sqlite3-src-afae0c93eda861c3/out/libsqlite3.a differ diff --git a/target/debug/build/sqlite3-src-afae0c93eda861c3/out/source/sqlite3.o b/target/debug/build/sqlite3-src-afae0c93eda861c3/out/source/sqlite3.o new file mode 100644 index 0000000..cfd6fd5 Binary files /dev/null and b/target/debug/build/sqlite3-src-afae0c93eda861c3/out/source/sqlite3.o differ diff --git a/target/debug/build/sqlite3-src-afae0c93eda861c3/output b/target/debug/build/sqlite3-src-afae0c93eda861c3/output new file mode 100644 index 0000000..511f6ae --- /dev/null +++ b/target/debug/build/sqlite3-src-afae0c93eda861c3/output @@ -0,0 +1,47 @@ +cargo:rerun-if-env-changed=SQLITE3_NO_PKG_CONFIG +cargo:rerun-if-env-changed=PKG_CONFIG_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG +cargo:rerun-if-env-changed=PKG_CONFIG +cargo:rerun-if-env-changed=SQLITE3_STATIC +cargo:rerun-if-env-changed=SQLITE3_DYNAMIC +cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC +cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC +cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH +cargo:rerun-if-env-changed=PKG_CONFIG_PATH +cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR +cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64-unknown-linux-gnu +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64_unknown_linux_gnu +cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR +cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR +TARGET = Some("x86_64-unknown-linux-gnu") +OPT_LEVEL = Some("0") +HOST = Some("x86_64-unknown-linux-gnu") +CC_x86_64-unknown-linux-gnu = None +CC_x86_64_unknown_linux_gnu = None +HOST_CC = None +CC = None +CFLAGS_x86_64-unknown-linux-gnu = None +CFLAGS_x86_64_unknown_linux_gnu = None +HOST_CFLAGS = None +CFLAGS = None +CRATE_CC_NO_DEFAULTS = None +DEBUG = Some("true") +CARGO_CFG_TARGET_FEATURE = Some("fxsr,sse,sse2") +running: "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-m64" "-Wall" "-Wextra" "-o" "/home/amy/crystal/pkg-manager-warner/target/debug/build/sqlite3-src-afae0c93eda861c3/out/source/sqlite3.o" "-c" "source/sqlite3.c" +exit status: 0 +AR_x86_64-unknown-linux-gnu = None +AR_x86_64_unknown_linux_gnu = None +HOST_AR = None +AR = None +running: "ar" "cq" "/home/amy/crystal/pkg-manager-warner/target/debug/build/sqlite3-src-afae0c93eda861c3/out/libsqlite3.a" "/home/amy/crystal/pkg-manager-warner/target/debug/build/sqlite3-src-afae0c93eda861c3/out/source/sqlite3.o" +exit status: 0 +running: "ar" "s" "/home/amy/crystal/pkg-manager-warner/target/debug/build/sqlite3-src-afae0c93eda861c3/out/libsqlite3.a" +exit status: 0 +cargo:rustc-link-lib=static=sqlite3 +cargo:rustc-link-search=native=/home/amy/crystal/pkg-manager-warner/target/debug/build/sqlite3-src-afae0c93eda861c3/out diff --git a/target/debug/build/sqlite3-src-afae0c93eda861c3/root-output b/target/debug/build/sqlite3-src-afae0c93eda861c3/root-output new file mode 100644 index 0000000..29f3bb0 --- /dev/null +++ b/target/debug/build/sqlite3-src-afae0c93eda861c3/root-output @@ -0,0 +1 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/build/sqlite3-src-afae0c93eda861c3/out \ No newline at end of file diff --git a/target/debug/build/sqlite3-src-afae0c93eda861c3/stderr b/target/debug/build/sqlite3-src-afae0c93eda861c3/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build-script-build b/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build-script-build new file mode 100755 index 0000000..1baf058 Binary files /dev/null and b/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build-script-build differ diff --git a/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build_script_build-ed28aa5ca2ea29f3 b/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build_script_build-ed28aa5ca2ea29f3 new file mode 100755 index 0000000..1baf058 Binary files /dev/null and b/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build_script_build-ed28aa5ca2ea29f3 differ diff --git a/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build_script_build-ed28aa5ca2ea29f3.d b/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build_script_build-ed28aa5ca2ea29f3.d new file mode 100644 index 0000000..a4cec89 --- /dev/null +++ b/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build_script_build-ed28aa5ca2ea29f3.d @@ -0,0 +1,5 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build_script_build-ed28aa5ca2ea29f3: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-src-0.3.0/build.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/build/sqlite3-src-ed28aa5ca2ea29f3/build_script_build-ed28aa5ca2ea29f3.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-src-0.3.0/build.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-src-0.3.0/build.rs: diff --git a/target/debug/deps/autocfg-d0f3568de4ac8b4f.d b/target/debug/deps/autocfg-d0f3568de4ac8b4f.d new file mode 100644 index 0000000..c56a675 --- /dev/null +++ b/target/debug/deps/autocfg-d0f3568de4ac8b4f.d @@ -0,0 +1,9 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/autocfg-d0f3568de4ac8b4f.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/error.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/version.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/libautocfg-d0f3568de4ac8b4f.rlib: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/error.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/version.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/autocfg-d0f3568de4ac8b4f.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/error.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/version.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/lib.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/error.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/version.rs: diff --git a/target/debug/deps/bitflags-0d597eea5c6c9299.d b/target/debug/deps/bitflags-0d597eea5c6c9299.d new file mode 100644 index 0000000..58da777 --- /dev/null +++ b/target/debug/deps/bitflags-0d597eea5c6c9299.d @@ -0,0 +1,5 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/bitflags-0d597eea5c6c9299.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/bitflags-0d597eea5c6c9299.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs: diff --git a/target/debug/deps/cc-b7b73ee25341f9d1.d b/target/debug/deps/cc-b7b73ee25341f9d1.d new file mode 100644 index 0000000..7ba5bda --- /dev/null +++ b/target/debug/deps/cc-b7b73ee25341f9d1.d @@ -0,0 +1,8 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/cc-b7b73ee25341f9d1.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.72/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.72/src/windows_registry.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/libcc-b7b73ee25341f9d1.rlib: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.72/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.72/src/windows_registry.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/cc-b7b73ee25341f9d1.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.72/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.72/src/windows_registry.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.72/src/lib.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.72/src/windows_registry.rs: diff --git a/target/debug/deps/cfg_if-01728933ff8322ec.d b/target/debug/deps/cfg_if-01728933ff8322ec.d new file mode 100644 index 0000000..a3cde08 --- /dev/null +++ b/target/debug/deps/cfg_if-01728933ff8322ec.d @@ -0,0 +1,5 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/cfg_if-01728933ff8322ec.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/cfg_if-01728933ff8322ec.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs: diff --git a/target/debug/deps/libautocfg-d0f3568de4ac8b4f.rlib b/target/debug/deps/libautocfg-d0f3568de4ac8b4f.rlib new file mode 100644 index 0000000..456eaa1 Binary files /dev/null and b/target/debug/deps/libautocfg-d0f3568de4ac8b4f.rlib differ diff --git a/target/debug/deps/libautocfg-d0f3568de4ac8b4f.rmeta b/target/debug/deps/libautocfg-d0f3568de4ac8b4f.rmeta new file mode 100644 index 0000000..0411546 Binary files /dev/null and b/target/debug/deps/libautocfg-d0f3568de4ac8b4f.rmeta differ diff --git a/target/debug/deps/libbitflags-0d597eea5c6c9299.rmeta b/target/debug/deps/libbitflags-0d597eea5c6c9299.rmeta new file mode 100644 index 0000000..a0e7a6c Binary files /dev/null and b/target/debug/deps/libbitflags-0d597eea5c6c9299.rmeta differ diff --git a/target/debug/deps/libc-fb699e584894b098.d b/target/debug/deps/libc-fb699e584894b098.d new file mode 100644 index 0000000..7ccd88c --- /dev/null +++ b/target/debug/deps/libc-fb699e584894b098.d @@ -0,0 +1,21 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/libc-fb699e584894b098.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/macros.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/fixed_width_ints.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/arch/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/align.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/arch/generic/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/align.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/non_exhaustive.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/align.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/libc-fb699e584894b098.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/macros.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/fixed_width_ints.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/arch/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/align.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/arch/generic/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/align.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/non_exhaustive.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/align.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/lib.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/macros.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/fixed_width_ints.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/arch/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/gnu/align.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/arch/generic/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/align.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/linux_like/linux/non_exhaustive.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.109/src/unix/align.rs: diff --git a/target/debug/deps/libcc-b7b73ee25341f9d1.rlib b/target/debug/deps/libcc-b7b73ee25341f9d1.rlib new file mode 100644 index 0000000..5e15aca Binary files /dev/null and b/target/debug/deps/libcc-b7b73ee25341f9d1.rlib differ diff --git a/target/debug/deps/libcc-b7b73ee25341f9d1.rmeta b/target/debug/deps/libcc-b7b73ee25341f9d1.rmeta new file mode 100644 index 0000000..3300414 Binary files /dev/null and b/target/debug/deps/libcc-b7b73ee25341f9d1.rmeta differ diff --git a/target/debug/deps/libcfg_if-01728933ff8322ec.rmeta b/target/debug/deps/libcfg_if-01728933ff8322ec.rmeta new file mode 100644 index 0000000..5d6c778 Binary files /dev/null and b/target/debug/deps/libcfg_if-01728933ff8322ec.rmeta differ diff --git a/target/debug/deps/liblibc-fb699e584894b098.rmeta b/target/debug/deps/liblibc-fb699e584894b098.rmeta new file mode 100644 index 0000000..db0a6df Binary files /dev/null and b/target/debug/deps/liblibc-fb699e584894b098.rmeta differ diff --git a/target/debug/deps/libmemoffset-8c633a2205f68701.rmeta b/target/debug/deps/libmemoffset-8c633a2205f68701.rmeta new file mode 100644 index 0000000..9aecdf2 Binary files /dev/null and b/target/debug/deps/libmemoffset-8c633a2205f68701.rmeta differ diff --git a/target/debug/deps/libnix-70965ac305032031.rmeta b/target/debug/deps/libnix-70965ac305032031.rmeta new file mode 100644 index 0000000..2500d06 Binary files /dev/null and b/target/debug/deps/libnix-70965ac305032031.rmeta differ diff --git a/target/debug/deps/libpkg_config-46002c4c55931941.rlib b/target/debug/deps/libpkg_config-46002c4c55931941.rlib new file mode 100644 index 0000000..1d04b05 Binary files /dev/null and b/target/debug/deps/libpkg_config-46002c4c55931941.rlib differ diff --git a/target/debug/deps/libpkg_config-46002c4c55931941.rmeta b/target/debug/deps/libpkg_config-46002c4c55931941.rmeta new file mode 100644 index 0000000..e40652f Binary files /dev/null and b/target/debug/deps/libpkg_config-46002c4c55931941.rmeta differ diff --git a/target/debug/deps/libpkg_warner-11f4f6dda71df57c.rmeta b/target/debug/deps/libpkg_warner-11f4f6dda71df57c.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/deps/libpkg_warner-95de65d2baa42f48.rmeta b/target/debug/deps/libpkg_warner-95de65d2baa42f48.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/deps/libserde-080ca2b3fd4c480c.rmeta b/target/debug/deps/libserde-080ca2b3fd4c480c.rmeta new file mode 100644 index 0000000..f98c12c Binary files /dev/null and b/target/debug/deps/libserde-080ca2b3fd4c480c.rmeta differ diff --git a/target/debug/deps/libsqlite-54e35233c930c3a9.rmeta b/target/debug/deps/libsqlite-54e35233c930c3a9.rmeta new file mode 100644 index 0000000..4571a20 Binary files /dev/null and b/target/debug/deps/libsqlite-54e35233c930c3a9.rmeta differ diff --git a/target/debug/deps/libsqlite3_src-40cfe2480587bad9.rmeta b/target/debug/deps/libsqlite3_src-40cfe2480587bad9.rmeta new file mode 100644 index 0000000..258ea76 Binary files /dev/null and b/target/debug/deps/libsqlite3_src-40cfe2480587bad9.rmeta differ diff --git a/target/debug/deps/libsqlite3_sys-62cae4fd1e27465c.rmeta b/target/debug/deps/libsqlite3_sys-62cae4fd1e27465c.rmeta new file mode 100644 index 0000000..77fe59f Binary files /dev/null and b/target/debug/deps/libsqlite3_sys-62cae4fd1e27465c.rmeta differ diff --git a/target/debug/deps/libtoml-42e2df915f8b10a4.rmeta b/target/debug/deps/libtoml-42e2df915f8b10a4.rmeta new file mode 100644 index 0000000..7350363 Binary files /dev/null and b/target/debug/deps/libtoml-42e2df915f8b10a4.rmeta differ diff --git a/target/debug/deps/memoffset-8c633a2205f68701.d b/target/debug/deps/memoffset-8c633a2205f68701.d new file mode 100644 index 0000000..91c6e9f --- /dev/null +++ b/target/debug/deps/memoffset-8c633a2205f68701.d @@ -0,0 +1,8 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/memoffset-8c633a2205f68701.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/raw_field.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/offset_of.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/span_of.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/memoffset-8c633a2205f68701.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/raw_field.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/offset_of.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/span_of.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/lib.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/raw_field.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/offset_of.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/span_of.rs: diff --git a/target/debug/deps/nix-70965ac305032031.d b/target/debug/deps/nix-70965ac305032031.d new file mode 100644 index 0000000..138d7bb --- /dev/null +++ b/target/debug/deps/nix-70965ac305032031.d @@ -0,0 +1,57 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/nix-70965ac305032031.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/macros.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/dir.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/env.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/errno.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/features.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/fcntl.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/ifaddrs.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/kmod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/mount/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/mount/linux.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/mqueue.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/net/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/net/if_.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/poll.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/pty.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sched.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/aio.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/epoll.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/eventfd.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ioctl/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ioctl/linux.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/memfd.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/mman.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/personality.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/pthread.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ptrace/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ptrace/linux.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/quota.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/reboot.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/resource.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/select.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/sendfile.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/signal.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/signalfd.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/socket/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/socket/addr.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/socket/sockopt.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/stat.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/statfs.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/statvfs.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/sysinfo.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/termios.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/time.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/uio.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/utsname.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/wait.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/inotify.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/timerfd.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/time.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/ucontext.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/unistd.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/nix-70965ac305032031.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/macros.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/dir.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/env.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/errno.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/features.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/fcntl.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/ifaddrs.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/kmod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/mount/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/mount/linux.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/mqueue.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/net/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/net/if_.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/poll.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/pty.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sched.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/aio.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/epoll.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/eventfd.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ioctl/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ioctl/linux.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/memfd.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/mman.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/personality.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/pthread.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ptrace/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ptrace/linux.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/quota.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/reboot.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/resource.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/select.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/sendfile.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/signal.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/signalfd.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/socket/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/socket/addr.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/socket/sockopt.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/stat.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/statfs.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/statvfs.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/sysinfo.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/termios.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/time.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/uio.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/utsname.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/wait.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/inotify.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/timerfd.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/time.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/ucontext.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/unistd.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/lib.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/macros.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/dir.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/env.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/errno.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/features.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/fcntl.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/ifaddrs.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/kmod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/mount/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/mount/linux.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/mqueue.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/net/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/net/if_.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/poll.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/pty.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sched.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/aio.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/epoll.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/eventfd.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ioctl/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ioctl/linux.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/memfd.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/mman.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/personality.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/pthread.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ptrace/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/ptrace/linux.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/quota.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/reboot.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/resource.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/select.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/sendfile.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/signal.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/signalfd.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/socket/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/socket/addr.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/socket/sockopt.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/stat.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/statfs.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/statvfs.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/sysinfo.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/termios.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/time.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/uio.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/utsname.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/wait.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/inotify.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/sys/timerfd.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/time.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/ucontext.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.23.0/src/unistd.rs: diff --git a/target/debug/deps/pkg_config-46002c4c55931941.d b/target/debug/deps/pkg_config-46002c4c55931941.d new file mode 100644 index 0000000..8ae5eba --- /dev/null +++ b/target/debug/deps/pkg_config-46002c4c55931941.d @@ -0,0 +1,7 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/pkg_config-46002c4c55931941.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.22/src/lib.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/libpkg_config-46002c4c55931941.rlib: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.22/src/lib.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/pkg_config-46002c4c55931941.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.22/src/lib.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.22/src/lib.rs: diff --git a/target/debug/deps/pkg_warner-11f4f6dda71df57c.d b/target/debug/deps/pkg_warner-11f4f6dda71df57c.d new file mode 100644 index 0000000..14bf9d4 --- /dev/null +++ b/target/debug/deps/pkg_warner-11f4f6dda71df57c.d @@ -0,0 +1,5 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/pkg_warner-11f4f6dda71df57c.rmeta: src/main.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/pkg_warner-11f4f6dda71df57c.d: src/main.rs + +src/main.rs: diff --git a/target/debug/deps/pkg_warner-95de65d2baa42f48.d b/target/debug/deps/pkg_warner-95de65d2baa42f48.d new file mode 100644 index 0000000..953c5aa --- /dev/null +++ b/target/debug/deps/pkg_warner-95de65d2baa42f48.d @@ -0,0 +1,5 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/pkg_warner-95de65d2baa42f48.rmeta: src/main.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/pkg_warner-95de65d2baa42f48.d: src/main.rs + +src/main.rs: diff --git a/target/debug/deps/serde-080ca2b3fd4c480c.d b/target/debug/deps/serde-080ca2b3fd4c480c.d new file mode 100644 index 0000000..1e5d476 --- /dev/null +++ b/target/debug/deps/serde-080ca2b3fd4c480c.d @@ -0,0 +1,22 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/serde-080ca2b3fd4c480c.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/macros.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/integer128.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/value.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/ignored_any.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/impls.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/utf8.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/fmt.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/impls.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/impossible.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/de.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/ser.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/size_hint.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/doc.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/seed.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/serde-080ca2b3fd4c480c.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/macros.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/integer128.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/value.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/ignored_any.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/impls.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/utf8.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/fmt.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/impls.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/impossible.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/mod.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/de.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/ser.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/size_hint.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/doc.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/seed.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/lib.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/macros.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/integer128.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/value.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/ignored_any.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/impls.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/utf8.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/fmt.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/impls.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/ser/impossible.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/mod.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/de.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/ser.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/size_hint.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/private/doc.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.130/src/de/seed.rs: diff --git a/target/debug/deps/sqlite-54e35233c930c3a9.d b/target/debug/deps/sqlite-54e35233c930c3a9.d new file mode 100644 index 0000000..3a61b64 --- /dev/null +++ b/target/debug/deps/sqlite-54e35233c930c3a9.d @@ -0,0 +1,8 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/sqlite-54e35233c930c3a9.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/connection.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/cursor.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/statement.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/sqlite-54e35233c930c3a9.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/connection.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/cursor.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/statement.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/lib.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/connection.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/cursor.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite-0.26.0/src/statement.rs: diff --git a/target/debug/deps/sqlite3_src-40cfe2480587bad9.d b/target/debug/deps/sqlite3_src-40cfe2480587bad9.d new file mode 100644 index 0000000..fbe0969 --- /dev/null +++ b/target/debug/deps/sqlite3_src-40cfe2480587bad9.d @@ -0,0 +1,5 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/sqlite3_src-40cfe2480587bad9.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-src-0.3.0/src/lib.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/sqlite3_src-40cfe2480587bad9.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-src-0.3.0/src/lib.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-src-0.3.0/src/lib.rs: diff --git a/target/debug/deps/sqlite3_sys-62cae4fd1e27465c.d b/target/debug/deps/sqlite3_sys-62cae4fd1e27465c.d new file mode 100644 index 0000000..09d74a1 --- /dev/null +++ b/target/debug/deps/sqlite3_sys-62cae4fd1e27465c.d @@ -0,0 +1,8 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/sqlite3_sys-62cae4fd1e27465c.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/constants.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/functions.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/types.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/sqlite3_sys-62cae4fd1e27465c.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/constants.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/functions.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/types.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/lib.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/constants.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/functions.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/sqlite3-sys-0.13.0/src/types.rs: diff --git a/target/debug/deps/toml-42e2df915f8b10a4.d b/target/debug/deps/toml-42e2df915f8b10a4.d new file mode 100644 index 0000000..3cf2bcc --- /dev/null +++ b/target/debug/deps/toml-42e2df915f8b10a4.d @@ -0,0 +1,13 @@ +/home/amy/crystal/pkg-manager-warner/target/debug/deps/toml-42e2df915f8b10a4.rmeta: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/map.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/value.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/datetime.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/ser.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/de.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/tokens.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/macros.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/spanned.rs + +/home/amy/crystal/pkg-manager-warner/target/debug/deps/toml-42e2df915f8b10a4.d: /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/lib.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/map.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/value.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/datetime.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/ser.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/de.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/tokens.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/macros.rs /home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/spanned.rs + +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/lib.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/map.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/value.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/datetime.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/ser.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/de.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/tokens.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/macros.rs: +/home/amy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.8/src/spanned.rs: diff --git a/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgpwtzi2-15mtdlg-working/dep-graph.part.bin b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgpwtzi2-15mtdlg-working/dep-graph.part.bin new file mode 100644 index 0000000..cfbd81e Binary files /dev/null and b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgpwtzi2-15mtdlg-working/dep-graph.part.bin differ diff --git a/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgpwtzi2-15mtdlg.lock b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgpwtzi2-15mtdlg.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin-36adsp1wxkfx2/dep-graph.bin b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin-36adsp1wxkfx2/dep-graph.bin new file mode 100644 index 0000000..7fffd17 Binary files /dev/null and b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin-36adsp1wxkfx2/dep-graph.bin differ diff --git a/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin-36adsp1wxkfx2/query-cache.bin b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin-36adsp1wxkfx2/query-cache.bin new file mode 100644 index 0000000..fa76a60 Binary files /dev/null and b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin-36adsp1wxkfx2/query-cache.bin differ diff --git a/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin-36adsp1wxkfx2/work-products.bin b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin-36adsp1wxkfx2/work-products.bin new file mode 100644 index 0000000..1dfae4d Binary files /dev/null and b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin-36adsp1wxkfx2/work-products.bin differ diff --git a/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin.lock b/target/debug/incremental/pkg_warner-2bxk2wt8ybhq7/s-g4vgq11teu-rqhzin.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgpwtzeo-19zpzq3-working/dep-graph.part.bin b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgpwtzeo-19zpzq3-working/dep-graph.part.bin new file mode 100644 index 0000000..b343714 Binary files /dev/null and b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgpwtzeo-19zpzq3-working/dep-graph.part.bin differ diff --git a/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgpwtzeo-19zpzq3.lock b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgpwtzeo-19zpzq3.lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7-24ifkev6xxju/dep-graph.bin b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7-24ifkev6xxju/dep-graph.bin new file mode 100644 index 0000000..05d7fc7 Binary files /dev/null and b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7-24ifkev6xxju/dep-graph.bin differ diff --git a/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7-24ifkev6xxju/query-cache.bin b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7-24ifkev6xxju/query-cache.bin new file mode 100644 index 0000000..24cb0e2 Binary files /dev/null and b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7-24ifkev6xxju/query-cache.bin differ diff --git a/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7-24ifkev6xxju/work-products.bin b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7-24ifkev6xxju/work-products.bin new file mode 100644 index 0000000..1dfae4d Binary files /dev/null and b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7-24ifkev6xxju/work-products.bin differ diff --git a/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7.lock b/target/debug/incremental/pkg_warner-h034vvrv6mz6/s-g4vgq11svd-6vnin7.lock new file mode 100755 index 0000000..e69de29