diff --git a/src/main.rs b/src/main.rs index e7a11a9..d1b61bc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,149 @@ -fn main() { - println!("Hello, world!"); +//use serde::{Deserialize, Serialize}; +//use serde_json::{self, json}; + +use std::collections::HashMap; +use std::env; +use std::fs; +use std::io::BufRead; +use std::io::BufReader; +use std::os::unix::net::UnixStream; +use std::process::Command; +use std::str; +use std::string::String; +use std::thread::sleep; +use std::time::Duration; + +const DESKTOP_PATH: &str = "/usr/share/applications/"; +const ENV_INSTANCE_SIGNATURE: &str = "HYPRLAND_INSTANCE_SIGNATURE"; + +//struct Workspace { +// id: i32, +// active_on: u32, +// num_windows: u32, +// icon: String, +//} + +//fn fetch_workspaces() {} + +fn fetch_monitors() { + let monitors = Command::new("hyprctl monitors") + .arg("-j") + .output() + .unwrap() + .stdout; +} + +//fn fetch_clients() {} + +fn generate_icon_map() -> HashMap { + let files = fs::read_dir(DESKTOP_PATH).unwrap(); + + let mut vector = vec![]; + + let mut i = 0; + + for file in files { + let file = match file { + Ok(file) => file, + Err(_) => continue, + }; + let path = file.path(); + let extension = path.extension().expect("error"); + + if extension != "desktop" { + continue; + } + + let mut class = String::new(); + let mut icon = String::new(); + + let file = fs::read_to_string(path).unwrap(); + + let mut got_icon = false; + let mut got_class = false; + + for line in file.lines() { + let line = line.replace(' ', ""); + match (got_icon, &line) { + (true, _) => (), + (false, line) if line.starts_with("Icon=") => { + icon = line.split_once('=').expect("error").1.to_string(); + got_icon = true; + if got_class { + break; + } + continue; + } + _ => (), + } + + match (got_class, &line) { + (true, _) => (), + (false, line) if line.starts_with("StartupWMClass=") => { + class = line.split_once('=').expect("error").1.to_string(); + got_class = true; + if got_icon { + break; + } + continue; + } + (false, line) if line.starts_with("Name=") => { + class = line.split_once('=').expect("error").1.to_string(); + continue; + } + _ => (), + } + } + vector.push((class, icon)); + i += 1; + } + + let mut icon_map: HashMap = HashMap::with_capacity(i); + icon_map.extend(vector); + + for (key, value) in &icon_map { + println!("Key: {}, Value: {}", key, value); + } + + icon_map +} + +fn handle_workspace() { + fetch_monitors(); +} +fn handle_moveworkspace() {} +fn handle_activespecial() {} +fn handle_openwindow() {} +fn handle_closewindow() {} +fn handle_movewindow() {} +fn handle_activewindow() {} + +fn handle(message: &str) { + println!("{}", message); + match message { + s if s.starts_with("workspacev2>>") => handle_workspace(), + s if s.starts_with("moveworkspacev2>>") => handle_moveworkspace(), + s if s.starts_with("activespecial>>") => handle_activespecial(), + s if s.starts_with("openwindow>>") => handle_openwindow(), + s if s.starts_with("closewindow>>") => handle_closewindow(), + s if s.starts_with("movewindowv2>>") => handle_movewindow(), + s if s.starts_with("activewindow>>v2") => handle_activewindow(), + _ => (), + }; +} + +fn main() { + let icon_map = generate_icon_map(); + + let hyprland_instance_signature = env::var(ENV_INSTANCE_SIGNATURE).unwrap(); + let address = format!("/tmp/hypr/{}/.socket2.sock", hyprland_instance_signature); + let stream = UnixStream::connect(address).unwrap(); + let mut reader = BufReader::new(stream); + + loop { + let mut buf = String::new(); + reader.read_line(&mut buf).unwrap(); + handle(buf.trim()); + sleep(Duration::from_millis(100)); + } } diff --git a/tempdir/rusttest/src/main.rs b/src/newtest.rs similarity index 100% rename from tempdir/rusttest/src/main.rs rename to src/newtest.rs diff --git a/tempdir/hyprland_workspace_json/Cargo.lock b/tempdir/hyprland_workspace_json/Cargo.lock deleted file mode 100644 index 80d7410..0000000 --- a/tempdir/hyprland_workspace_json/Cargo.lock +++ /dev/null @@ -1,89 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "hyprland_workspace_json" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", -] - -[[package]] -name = "itoa" -version = "1.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" - -[[package]] -name = "proc-macro2" -version = "1.0.81" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "quote" -version = "1.0.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "ryu" -version = "1.0.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" - -[[package]] -name = "serde" -version = "1.0.199" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.199" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_json" -version = "1.0.116" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" -dependencies = [ - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "syn" -version = "2.0.60" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "unicode-ident" -version = "1.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" diff --git a/tempdir/hyprland_workspace_json/Cargo.toml b/tempdir/hyprland_workspace_json/Cargo.toml deleted file mode 100644 index f3792d4..0000000 --- a/tempdir/hyprland_workspace_json/Cargo.toml +++ /dev/null @@ -1,8 +0,0 @@ -[package] -name = "hyprland_workspace_json" -version = "0.1.0" -edition = "2021" - -[dependencies] -serde = "1.0.199" -serde_json = "1.0.116" diff --git a/tempdir/hyprland_workspace_json/src/main.rs b/tempdir/hyprland_workspace_json/src/main.rs deleted file mode 100644 index d1b61bc..0000000 --- a/tempdir/hyprland_workspace_json/src/main.rs +++ /dev/null @@ -1,149 +0,0 @@ -//use serde::{Deserialize, Serialize}; -//use serde_json::{self, json}; - -use std::collections::HashMap; -use std::env; -use std::fs; -use std::io::BufRead; -use std::io::BufReader; -use std::os::unix::net::UnixStream; -use std::process::Command; -use std::str; -use std::string::String; -use std::thread::sleep; -use std::time::Duration; - -const DESKTOP_PATH: &str = "/usr/share/applications/"; -const ENV_INSTANCE_SIGNATURE: &str = "HYPRLAND_INSTANCE_SIGNATURE"; - -//struct Workspace { -// id: i32, -// active_on: u32, -// num_windows: u32, -// icon: String, -//} - -//fn fetch_workspaces() {} - -fn fetch_monitors() { - let monitors = Command::new("hyprctl monitors") - .arg("-j") - .output() - .unwrap() - .stdout; -} - -//fn fetch_clients() {} - -fn generate_icon_map() -> HashMap { - let files = fs::read_dir(DESKTOP_PATH).unwrap(); - - let mut vector = vec![]; - - let mut i = 0; - - for file in files { - let file = match file { - Ok(file) => file, - Err(_) => continue, - }; - let path = file.path(); - let extension = path.extension().expect("error"); - - if extension != "desktop" { - continue; - } - - let mut class = String::new(); - let mut icon = String::new(); - - let file = fs::read_to_string(path).unwrap(); - - let mut got_icon = false; - let mut got_class = false; - - for line in file.lines() { - let line = line.replace(' ', ""); - match (got_icon, &line) { - (true, _) => (), - (false, line) if line.starts_with("Icon=") => { - icon = line.split_once('=').expect("error").1.to_string(); - got_icon = true; - if got_class { - break; - } - continue; - } - _ => (), - } - - match (got_class, &line) { - (true, _) => (), - (false, line) if line.starts_with("StartupWMClass=") => { - class = line.split_once('=').expect("error").1.to_string(); - got_class = true; - if got_icon { - break; - } - continue; - } - (false, line) if line.starts_with("Name=") => { - class = line.split_once('=').expect("error").1.to_string(); - continue; - } - _ => (), - } - } - vector.push((class, icon)); - i += 1; - } - - let mut icon_map: HashMap = HashMap::with_capacity(i); - icon_map.extend(vector); - - for (key, value) in &icon_map { - println!("Key: {}, Value: {}", key, value); - } - - icon_map -} - -fn handle_workspace() { - fetch_monitors(); -} -fn handle_moveworkspace() {} -fn handle_activespecial() {} -fn handle_openwindow() {} -fn handle_closewindow() {} -fn handle_movewindow() {} -fn handle_activewindow() {} - -fn handle(message: &str) { - println!("{}", message); - match message { - s if s.starts_with("workspacev2>>") => handle_workspace(), - s if s.starts_with("moveworkspacev2>>") => handle_moveworkspace(), - s if s.starts_with("activespecial>>") => handle_activespecial(), - s if s.starts_with("openwindow>>") => handle_openwindow(), - s if s.starts_with("closewindow>>") => handle_closewindow(), - s if s.starts_with("movewindowv2>>") => handle_movewindow(), - s if s.starts_with("activewindow>>v2") => handle_activewindow(), - _ => (), - }; -} - -fn main() { - let icon_map = generate_icon_map(); - - let hyprland_instance_signature = env::var(ENV_INSTANCE_SIGNATURE).unwrap(); - let address = format!("/tmp/hypr/{}/.socket2.sock", hyprland_instance_signature); - let stream = UnixStream::connect(address).unwrap(); - let mut reader = BufReader::new(stream); - - loop { - let mut buf = String::new(); - reader.read_line(&mut buf).unwrap(); - handle(buf.trim()); - sleep(Duration::from_millis(100)); - } -} diff --git a/tempdir/hyprland_workspace_json/target/.rustc_info.json b/tempdir/hyprland_workspace_json/target/.rustc_info.json deleted file mode 100644 index 9d2bba6..0000000 --- a/tempdir/hyprland_workspace_json/target/.rustc_info.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc_fingerprint":10721803058081107973,"outputs":{"1185988223601034215":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/willifan/.rustup/toolchains/1.76.0-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\nfeature=\"cargo-clippy\"\npanic=\"unwind\"\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_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.76.0 (07dca489a 2024-02-04)\nbinary: rustc\ncommit-hash: 07dca489ac2d933c78d3c5158e3f43beefeb02ce\ncommit-date: 2024-02-04\nhost: x86_64-unknown-linux-gnu\nrelease: 1.76.0\nLLVM version: 17.0.6\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/CACHEDIR.TAG b/tempdir/hyprland_workspace_json/target/CACHEDIR.TAG deleted file mode 100644 index 20d7c31..0000000 --- a/tempdir/hyprland_workspace_json/target/CACHEDIR.TAG +++ /dev/null @@ -1,3 +0,0 @@ -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/tempdir/hyprland_workspace_json/target/debug/.cargo-lock b/tempdir/hyprland_workspace_json/target/debug/.cargo-lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/bin-hyprland_workspace_json deleted file mode 100644 index 28ecdec..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -2b715492d19f8e3e \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/bin-hyprland_workspace_json.json deleted file mode 100644 index e4e9c7a..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":5601947868832436996,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,6543941702921472645],[16596247279872866912,"serde_json",false,481651981999974733]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/dep-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/dep-bin-hyprland_workspace_json deleted file mode 100644 index d313bb6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/dep-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/output-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/output-bin-hyprland_workspace_json deleted file mode 100644 index 7808541..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/output-bin-hyprland_workspace_json +++ /dev/null @@ -1,3 +0,0 @@ -{"$message_type":"diagnostic","message":"unused variable: `monitors`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":617,"byte_end":625,"line_start":29,"line_end":29,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let monitors = Command::new(\"hyprctl monitors\")","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":617,"byte_end":625,"line_start":29,"line_end":29,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let monitors = Command::new(\"hyprctl monitors\")","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":"_monitors","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `monitors`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:29:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m29\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let monitors = Command::new(\"hyprctl monitors\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_monitors`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused variable: `icon_map`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":3662,"byte_end":3670,"line_start":136,"line_end":136,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let icon_map = generate_icon_map();","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":3662,"byte_end":3670,"line_start":136,"line_end":136,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let icon_map = generate_icon_map();","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":"_icon_map","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `icon_map`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:136:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m136\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let icon_map = generate_icon_map();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_icon_map`\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 2 warnings emitted\u001b[0m\n\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/dep-test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/dep-test-bin-hyprland_workspace_json deleted file mode 100644 index d313bb6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/dep-test-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/output-test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/output-test-bin-hyprland_workspace_json deleted file mode 100644 index ac8bd67..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/output-test-bin-hyprland_workspace_json +++ /dev/null @@ -1,6 +0,0 @@ -{"$message_type":"diagnostic","message":"unexpected end of macro invocation","code":null,"level":"error","spans":[{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":7291,"byte_end":7307,"line_start":207,"line_end":207,"column_start":9,"column_end":25,"is_primary":true,"text":[{"text":" json_internal!();","highlight_start":9,"highlight_end":25}],"label":"missing tokens in macro arguments","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":8459,"byte_end":8529,"line_start":235,"line_end":235,"column_start":9,"column_end":79,"is_primary":false,"text":[{"text":" json_internal!(@object $object ($($key)* $tt) ($($rest)*) ($($rest)*));","highlight_start":9,"highlight_end":79}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":9322,"byte_end":9375,"line_start":271,"line_end":271,"column_start":13,"column_end":66,"is_primary":false,"text":[{"text":" json_internal!(@object object () ($($tt)+) ($($tt)+));","highlight_start":13,"highlight_end":66}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1449,"byte_end":1474,"line_start":57,"line_end":57,"column_start":9,"column_end":34,"is_primary":false,"text":[{"text":" json_internal!($($json)+)","highlight_start":9,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/main.rs","byte_start":143,"byte_end":464,"line_start":7,"line_end":20,"column_start":22,"column_end":7,"is_primary":false,"text":[{"text":" let workspaces = json!({","highlight_start":22,"highlight_end":29},{"text":" [","highlight_start":1,"highlight_end":10},{"text":" \"normal\":","highlight_start":1,"highlight_end":22},{"text":" \"id\": \"0\",","highlight_start":1,"highlight_end":27},{"text":" \"activeOn\": \"\",","highlight_start":1,"highlight_end":32},{"text":" \"numWindows\": \"0\",","highlight_start":1,"highlight_end":35},{"text":" \"icon\": \"\"","highlight_start":1,"highlight_end":27},{"text":" \"special\":","highlight_start":1,"highlight_end":23},{"text":" \"id\": \"0\",","highlight_start":1,"highlight_end":27},{"text":" \"activeOn\": \"\",","highlight_start":1,"highlight_end":32},{"text":" \"numWindows\": \"0\",","highlight_start":1,"highlight_end":35},{"text":" \"icon\": \"\"","highlight_start":1,"highlight_end":27},{"text":" ]","highlight_start":1,"highlight_end":10},{"text":" });","highlight_start":1,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"json!","def_site_span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1322,"byte_end":1339,"line_start":54,"line_end":54,"column_start":1,"column_end":18,"is_primary":false,"text":[{"text":"macro_rules! json {","highlight_start":1,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}},"macro_decl_name":"json_internal!","def_site_span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1986,"byte_end":2012,"line_start":70,"line_end":70,"column_start":1,"column_end":27,"is_primary":false,"text":[{"text":"macro_rules! json_internal {","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}},"macro_decl_name":"json_internal!","def_site_span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1986,"byte_end":2012,"line_start":70,"line_end":70,"column_start":1,"column_end":27,"is_primary":false,"text":[{"text":"macro_rules! json_internal {","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}},"macro_decl_name":"json_internal!","def_site_span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1986,"byte_end":2012,"line_start":70,"line_end":70,"column_start":1,"column_end":27,"is_primary":false,"text":[{"text":"macro_rules! json_internal {","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"while trying to match `@`","code":null,"level":"note","spans":[{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":2385,"byte_end":2386,"line_start":79,"line_end":79,"column_start":6,"column_end":7,"is_primary":true,"text":[{"text":" (@array [$($elems:expr,)*]) => {","highlight_start":6,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: unexpected end of macro invocation\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:7:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let workspaces = json!({\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m______________________^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m [\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m9\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m \"normal\":\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m \"id\": \"0\",\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ]\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m });\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|______^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmissing tokens in macro arguments\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: while trying to match `@`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs:79:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m79\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m (@array [$($elems:expr,)*]) => {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this error originates in the macro `json_internal` which comes from the expansion of the macro `json` (in Nightly builds, run with -Z macro-backtrace for more info)\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unresolved import `serde`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":4,"byte_end":9,"line_start":1,"line_end":1,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":"use serde::Serialze;","highlight_start":5,"highlight_end":10}],"label":"use of undeclared crate or module `serde`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `serde`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde::Serialze;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared crate or module `serde`\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::collections::HashMap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":55,"byte_end":80,"line_start":3,"line_end":3,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":51,"byte_end":81,"line_start":3,"line_end":3,"column_start":1,"column_end":31,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::collections::HashMap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::process::Command`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":86,"byte_end":107,"line_start":4,"line_end":4,"column_start":5,"column_end":26,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":5,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":82,"byte_end":108,"line_start":4,"line_end":4,"column_start":1,"column_end":27,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::process::Command`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:4:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::process::Command;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"aborting due to 2 previous errors; 2 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 2 previous errors; 2 warnings emitted\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/test-bin-hyprland_workspace_json deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/test-bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/test-bin-hyprland_workspace_json.json deleted file mode 100644 index 419083d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/test-bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11983525691607113661,"path":1684066648322511884,"deps":[[16596247279872866912,"serde_json",false,4504624389509218668]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/dep-test-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/bin-hyprland_workspace_json deleted file mode 100644 index 12375e9..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -0e6f9d28ebe14202 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/bin-hyprland_workspace_json.json deleted file mode 100644 index 84e1b1f..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11597332650809196192,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,2279579544486998568]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/dep-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/dep-bin-hyprland_workspace_json deleted file mode 100644 index 5fdf103..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/dep-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/output-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/output-bin-hyprland_workspace_json deleted file mode 100644 index 6abfc9c..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/output-bin-hyprland_workspace_json +++ /dev/null @@ -1,4 +0,0 @@ -{"$message_type":"diagnostic","message":"unused import: `serde`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":4,"byte_end":9,"line_start":1,"line_end":1,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":"use serde;","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `serde`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::collections::HashMap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":15,"byte_end":40,"line_start":2,"line_end":2,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":11,"byte_end":41,"line_start":2,"line_end":2,"column_start":1,"column_end":31,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::collections::HashMap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::process::Command`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":46,"byte_end":67,"line_start":3,"line_end":3,"column_start":5,"column_end":26,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":5,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":42,"byte_end":68,"line_start":3,"line_end":3,"column_start":1,"column_end":27,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::process::Command`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::process::Command;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"3 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 3 warnings emitted\u001b[0m\n\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/test-bin-hyprland_workspace_json deleted file mode 100644 index 33144d6..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/test-bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -41afa3d7e5419d61 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/test-bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/test-bin-hyprland_workspace_json.json deleted file mode 100644 index 2a56a2e..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/test-bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11983525691607113661,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,6543941702921472645]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/dep-test-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/test-bin-hyprland_workspace_json deleted file mode 100644 index 737693b..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/test-bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -abd443bebdfefde2 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/test-bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/test-bin-hyprland_workspace_json.json deleted file mode 100644 index d7fd335..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/test-bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11983525691607113661,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,6543941702921472645],[16596247279872866912,"serde_json",false,481651981999974733]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/dep-test-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/bin-hyprland_workspace_json deleted file mode 100644 index ae6ce99..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -cb4da7e7320f7817 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/bin-hyprland_workspace_json.json deleted file mode 100644 index 4720deb..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":5601947868832436996,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,6543941702921472645]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/dep-test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/dep-test-bin-hyprland_workspace_json deleted file mode 100644 index d313bb6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/dep-test-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/output-test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/output-test-bin-hyprland_workspace_json deleted file mode 100644 index b332d98..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/output-test-bin-hyprland_workspace_json +++ /dev/null @@ -1,5 +0,0 @@ -{"$message_type":"diagnostic","message":"unused import: `serde`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":4,"byte_end":9,"line_start":1,"line_end":1,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":"use serde;","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `serde`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"this import is redundant","code":{"code":"clippy::single_component_path_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(clippy::single_component_path_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove it entirely","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: this import is redundant\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: remove it entirely\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(clippy::single_component_path_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::collections::HashMap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":15,"byte_end":40,"line_start":2,"line_end":2,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":11,"byte_end":41,"line_start":2,"line_end":2,"column_start":1,"column_end":31,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::collections::HashMap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::process::Command`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":46,"byte_end":67,"line_start":3,"line_end":3,"column_start":5,"column_end":26,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":5,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":42,"byte_end":68,"line_start":3,"line_end":3,"column_start":1,"column_end":27,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::process::Command`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::process::Command;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"4 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 4 warnings emitted\u001b[0m\n\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/test-bin-hyprland_workspace_json deleted file mode 100644 index d769344..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/test-bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -75fbedc88af77783 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/test-bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/test-bin-hyprland_workspace_json.json deleted file mode 100644 index d771b63..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/test-bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11983525691607113661,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,6543941702921472645]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/dep-test-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/test-bin-hyprland_workspace_json deleted file mode 100644 index f8dc58a..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/test-bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -0b8bcc69ae63a157 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/test-bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/test-bin-hyprland_workspace_json.json deleted file mode 100644 index ab10112..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/test-bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11983525691607113661,"path":1684066648322511884,"deps":[[16596247279872866912,"serde_json",false,4504624389509218668]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/dep-test-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/dep-test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/dep-test-bin-hyprland_workspace_json deleted file mode 100644 index d313bb6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/dep-test-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/output-test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/output-test-bin-hyprland_workspace_json deleted file mode 100644 index 7808541..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/output-test-bin-hyprland_workspace_json +++ /dev/null @@ -1,3 +0,0 @@ -{"$message_type":"diagnostic","message":"unused variable: `monitors`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":617,"byte_end":625,"line_start":29,"line_end":29,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let monitors = Command::new(\"hyprctl monitors\")","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":617,"byte_end":625,"line_start":29,"line_end":29,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let monitors = Command::new(\"hyprctl monitors\")","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":"_monitors","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `monitors`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:29:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m29\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let monitors = Command::new(\"hyprctl monitors\")\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_monitors`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused variable: `icon_map`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":3662,"byte_end":3670,"line_start":136,"line_end":136,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let icon_map = generate_icon_map();","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":3662,"byte_end":3670,"line_start":136,"line_end":136,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let icon_map = generate_icon_map();","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":"_icon_map","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `icon_map`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:136:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m136\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let icon_map = generate_icon_map();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_icon_map`\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 2 warnings emitted\u001b[0m\n\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/test-bin-hyprland_workspace_json deleted file mode 100644 index 016ea78..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/test-bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -a2f25c38072d3748 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/test-bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/test-bin-hyprland_workspace_json.json deleted file mode 100644 index 30f53a0..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/test-bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11983525691607113661,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,6543941702921472645],[16596247279872866912,"serde_json",false,481651981999974733]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/dep-test-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/bin-hyprland_workspace_json deleted file mode 100644 index c1be234..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -f3cb2eb61cc91cd2 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/bin-hyprland_workspace_json.json deleted file mode 100644 index 403f494..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":5601947868832436996,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,6543941702921472645]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/dep-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/dep-bin-hyprland_workspace_json deleted file mode 100644 index d313bb6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/dep-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/output-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/output-bin-hyprland_workspace_json deleted file mode 100644 index b332d98..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/output-bin-hyprland_workspace_json +++ /dev/null @@ -1,5 +0,0 @@ -{"$message_type":"diagnostic","message":"unused import: `serde`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":4,"byte_end":9,"line_start":1,"line_end":1,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":"use serde;","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `serde`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"this import is redundant","code":{"code":"clippy::single_component_path_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(clippy::single_component_path_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove it entirely","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: this import is redundant\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: remove it entirely\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(clippy::single_component_path_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::collections::HashMap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":15,"byte_end":40,"line_start":2,"line_end":2,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":11,"byte_end":41,"line_start":2,"line_end":2,"column_start":1,"column_end":31,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::collections::HashMap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::process::Command`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":46,"byte_end":67,"line_start":3,"line_end":3,"column_start":5,"column_end":26,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":5,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":42,"byte_end":68,"line_start":3,"line_end":3,"column_start":1,"column_end":27,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::process::Command`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::process::Command;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"4 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 4 warnings emitted\u001b[0m\n\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/bin-hyprland_workspace_json deleted file mode 100644 index 32473b7..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -eb911173579b5a13 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/bin-hyprland_workspace_json.json deleted file mode 100644 index 69312d2..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":5601947868832436996,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,6543941702921472645],[16596247279872866912,"serde_json",false,481651981999974733]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/bin-hyprland_workspace_json deleted file mode 100644 index be56395..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -9fd09bba6f8d21b5 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/bin-hyprland_workspace_json.json deleted file mode 100644 index 24c55b7..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":5601947868832436996,"path":1684066648322511884,"deps":[[16596247279872866912,"serde_json",false,4504624389509218668]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/bin-hyprland_workspace_json deleted file mode 100644 index 7cc19ae..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -28e8783f004a4108 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/bin-hyprland_workspace_json.json deleted file mode 100644 index c7265f0..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11597332650809196192,"path":1684066648322511884,"deps":[[11756502991321056180,"serde",false,2279579544486998568],[16596247279872866912,"serde_json",false,2572991873762177840]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/dep-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/dep-bin-hyprland_workspace_json deleted file mode 100644 index 5fdf103..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/dep-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/output-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/output-bin-hyprland_workspace_json deleted file mode 100644 index e79735c..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/output-bin-hyprland_workspace_json +++ /dev/null @@ -1,13 +0,0 @@ -{"$message_type":"diagnostic","message":"unused imports: `Deserialize`, `Serialize`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":12,"byte_end":23,"line_start":1,"line_end":1,"column_start":13,"column_end":24,"is_primary":true,"text":[{"text":"use serde::{Deserialize, Serialize};","highlight_start":13,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/main.rs","byte_start":25,"byte_end":34,"line_start":1,"line_end":1,"column_start":26,"column_end":35,"is_primary":true,"text":[{"text":"use serde::{Deserialize, Serialize};","highlight_start":26,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":36,"line_start":1,"line_end":1,"column_start":1,"column_end":37,"is_primary":true,"text":[{"text":"use serde::{Deserialize, Serialize};","highlight_start":1,"highlight_end":37}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused imports: `Deserialize`, `Serialize`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde::{Deserialize, Serialize};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `json`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":60,"byte_end":64,"line_start":2,"line_end":2,"column_start":24,"column_end":28,"is_primary":true,"text":[{"text":"use serde_json::{self, json};","highlight_start":24,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":58,"byte_end":64,"line_start":2,"line_end":2,"column_start":22,"column_end":28,"is_primary":true,"text":[{"text":"use serde_json::{self, json};","highlight_start":22,"highlight_end":28}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `json`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:24\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde_json::{self, json};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::env`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":103,"byte_end":111,"line_start":5,"line_end":5,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":"use std::env;","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":99,"byte_end":112,"line_start":5,"line_end":5,"column_start":1,"column_end":14,"is_primary":true,"text":[{"text":"use std::env;","highlight_start":1,"highlight_end":14}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::env`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:5:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::env;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::io::BufReader`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":152,"byte_end":170,"line_start":8,"line_end":8,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":"use std::io::BufReader;","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":148,"byte_end":171,"line_start":8,"line_end":8,"column_start":1,"column_end":24,"is_primary":true,"text":[{"text":"use std::io::BufReader;","highlight_start":1,"highlight_end":24}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::io::BufReader`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:8:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::io::BufReader;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::os::unix::net::UnixStream`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":176,"byte_end":206,"line_start":9,"line_end":9,"column_start":5,"column_end":35,"is_primary":true,"text":[{"text":"use std::os::unix::net::UnixStream;","highlight_start":5,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":172,"byte_end":207,"line_start":9,"line_end":9,"column_start":1,"column_end":36,"is_primary":true,"text":[{"text":"use std::os::unix::net::UnixStream;","highlight_start":1,"highlight_end":36}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::os::unix::net::UnixStream`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:9:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m9\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::os::unix::net::UnixStream;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::process::Command`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":212,"byte_end":233,"line_start":10,"line_end":10,"column_start":5,"column_end":26,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":5,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":208,"byte_end":234,"line_start":10,"line_end":10,"column_start":1,"column_end":27,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::process::Command`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:10:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::process::Command;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::thread::sleep`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":264,"byte_end":282,"line_start":12,"line_end":12,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":"use std::thread::sleep;","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":260,"byte_end":283,"line_start":12,"line_end":12,"column_start":1,"column_end":24,"is_primary":true,"text":[{"text":"use std::thread::sleep;","highlight_start":1,"highlight_end":24}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::thread::sleep`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:12:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m12\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::thread::sleep;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::time::Duration`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":288,"byte_end":307,"line_start":13,"line_end":13,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":"use std::time::Duration;","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":284,"byte_end":308,"line_start":13,"line_end":13,"column_start":1,"column_end":25,"is_primary":true,"text":[{"text":"use std::time::Duration;","highlight_start":1,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::time::Duration`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:13:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m13\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::time::Duration;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::io::BufRead`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":130,"byte_end":146,"line_start":7,"line_end":7,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use std::io::BufRead;","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::io::BufRead`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:7:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::io::BufRead;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"constant `INSTANCE_SIGNATURE` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":371,"byte_end":389,"line_start":16,"line_end":16,"column_start":7,"column_end":25,"is_primary":true,"text":[{"text":"const INSTANCE_SIGNATURE: &str = \"HYPRLAND_INSTANCE_SIGNATURE\";","highlight_start":7,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: constant `INSTANCE_SIGNATURE` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:16:7\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mconst INSTANCE_SIGNATURE: &str = \"HYPRLAND_INSTANCE_SIGNATURE\";\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"function `handle` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":2658,"byte_end":2664,"line_start":105,"line_end":105,"column_start":4,"column_end":10,"is_primary":true,"text":[{"text":"fn handle(message: &str) {","highlight_start":4,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `handle` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:105:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m105\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn handle(message: &str) {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused `Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":3140,"byte_end":3146,"line_start":120,"line_end":120,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" read();","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_must_use)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"use `let _ = ...` to ignore the resulting value","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":3140,"byte_end":3140,"line_start":120,"line_end":120,"column_start":5,"column_end":5,"is_primary":true,"text":[{"text":" read();","highlight_start":5,"highlight_end":5}],"label":null,"suggested_replacement":"let _ = ","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:120:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m120\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m read();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_must_use)]` on by default\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: use `let _ = ...` to ignore the resulting value\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m120\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10mlet _ = \u001b[0m\u001b[0mread();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+++++++\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"12 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 12 warnings emitted\u001b[0m\n\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/dep-test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/dep-test-bin-hyprland_workspace_json deleted file mode 100644 index d313bb6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/dep-test-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/output-test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/output-test-bin-hyprland_workspace_json deleted file mode 100644 index 9a756a2..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/output-test-bin-hyprland_workspace_json +++ /dev/null @@ -1,6 +0,0 @@ -{"$message_type":"diagnostic","message":"unresolved import `serde`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":4,"byte_end":9,"line_start":1,"line_end":1,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":"use serde;","highlight_start":5,"highlight_end":10}],"label":"no external crate `serde`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `serde`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno external crate `serde`\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"this import is redundant","code":{"code":"clippy::single_component_path_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(clippy::single_component_path_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove it entirely","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: this import is redundant\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: remove it entirely\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(clippy::single_component_path_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::collections::HashMap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":15,"byte_end":40,"line_start":2,"line_end":2,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":11,"byte_end":41,"line_start":2,"line_end":2,"column_start":1,"column_end":31,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::collections::HashMap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::process::Command`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":46,"byte_end":67,"line_start":3,"line_end":3,"column_start":5,"column_end":26,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":5,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":42,"byte_end":68,"line_start":3,"line_end":3,"column_start":1,"column_end":27,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::process::Command`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::process::Command;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"aborting due to 1 previous error; 3 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 1 previous error; 3 warnings emitted\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/test-bin-hyprland_workspace_json deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/test-bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/test-bin-hyprland_workspace_json.json deleted file mode 100644 index 5efb057..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/test-bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11983525691607113661,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/dep-test-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/test-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/test-bin-hyprland_workspace_json deleted file mode 100644 index ac4f5fa..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/test-bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -e643099c844487ab \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/test-bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/test-bin-hyprland_workspace_json.json deleted file mode 100644 index 1a490b5..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/test-bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":11983525691607113661,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/dep-test-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/bin-hyprland_workspace_json deleted file mode 100644 index 9d28517..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/bin-hyprland_workspace_json +++ /dev/null @@ -1 +0,0 @@ -63c17c7c83b85119 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/bin-hyprland_workspace_json.json deleted file mode 100644 index 4028714..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":5601947868832436996,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/bin-hyprland_workspace_json deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/bin-hyprland_workspace_json.json deleted file mode 100644 index ea95bad..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":5601947868832436996,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/dep-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/dep-bin-hyprland_workspace_json deleted file mode 100644 index d313bb6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/dep-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/output-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/output-bin-hyprland_workspace_json deleted file mode 100644 index 9a756a2..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/output-bin-hyprland_workspace_json +++ /dev/null @@ -1,6 +0,0 @@ -{"$message_type":"diagnostic","message":"unresolved import `serde`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":4,"byte_end":9,"line_start":1,"line_end":1,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":"use serde;","highlight_start":5,"highlight_end":10}],"label":"no external crate `serde`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `serde`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno external crate `serde`\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"this import is redundant","code":{"code":"clippy::single_component_path_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(clippy::single_component_path_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove it entirely","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":0,"byte_end":10,"line_start":1,"line_end":1,"column_start":1,"column_end":11,"is_primary":true,"text":[{"text":"use serde;","highlight_start":1,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: this import is redundant\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: remove it entirely\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(clippy::single_component_path_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::collections::HashMap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":15,"byte_end":40,"line_start":2,"line_end":2,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":11,"byte_end":41,"line_start":2,"line_end":2,"column_start":1,"column_end":31,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::collections::HashMap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::process::Command`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":46,"byte_end":67,"line_start":3,"line_end":3,"column_start":5,"column_end":26,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":5,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":42,"byte_end":68,"line_start":3,"line_end":3,"column_start":1,"column_end":27,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::process::Command`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::process::Command;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"aborting due to 1 previous error; 3 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 1 previous error; 3 warnings emitted\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/bin-hyprland_workspace_json deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/bin-hyprland_workspace_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/bin-hyprland_workspace_json.json deleted file mode 100644 index 6e35dee..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/bin-hyprland_workspace_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":4242516365433458241,"profile":5601947868832436996,"path":1684066648322511884,"deps":[[16596247279872866912,"serde_json",false,4504624389509218668]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/dep-bin-hyprland_workspace_json"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/dep-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/dep-bin-hyprland_workspace_json deleted file mode 100644 index d313bb6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/dep-bin-hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/output-bin-hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/output-bin-hyprland_workspace_json deleted file mode 100644 index ac8bd67..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/output-bin-hyprland_workspace_json +++ /dev/null @@ -1,6 +0,0 @@ -{"$message_type":"diagnostic","message":"unexpected end of macro invocation","code":null,"level":"error","spans":[{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":7291,"byte_end":7307,"line_start":207,"line_end":207,"column_start":9,"column_end":25,"is_primary":true,"text":[{"text":" json_internal!();","highlight_start":9,"highlight_end":25}],"label":"missing tokens in macro arguments","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":8459,"byte_end":8529,"line_start":235,"line_end":235,"column_start":9,"column_end":79,"is_primary":false,"text":[{"text":" json_internal!(@object $object ($($key)* $tt) ($($rest)*) ($($rest)*));","highlight_start":9,"highlight_end":79}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":9322,"byte_end":9375,"line_start":271,"line_end":271,"column_start":13,"column_end":66,"is_primary":false,"text":[{"text":" json_internal!(@object object () ($($tt)+) ($($tt)+));","highlight_start":13,"highlight_end":66}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1449,"byte_end":1474,"line_start":57,"line_end":57,"column_start":9,"column_end":34,"is_primary":false,"text":[{"text":" json_internal!($($json)+)","highlight_start":9,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/main.rs","byte_start":143,"byte_end":464,"line_start":7,"line_end":20,"column_start":22,"column_end":7,"is_primary":false,"text":[{"text":" let workspaces = json!({","highlight_start":22,"highlight_end":29},{"text":" [","highlight_start":1,"highlight_end":10},{"text":" \"normal\":","highlight_start":1,"highlight_end":22},{"text":" \"id\": \"0\",","highlight_start":1,"highlight_end":27},{"text":" \"activeOn\": \"\",","highlight_start":1,"highlight_end":32},{"text":" \"numWindows\": \"0\",","highlight_start":1,"highlight_end":35},{"text":" \"icon\": \"\"","highlight_start":1,"highlight_end":27},{"text":" \"special\":","highlight_start":1,"highlight_end":23},{"text":" \"id\": \"0\",","highlight_start":1,"highlight_end":27},{"text":" \"activeOn\": \"\",","highlight_start":1,"highlight_end":32},{"text":" \"numWindows\": \"0\",","highlight_start":1,"highlight_end":35},{"text":" \"icon\": \"\"","highlight_start":1,"highlight_end":27},{"text":" ]","highlight_start":1,"highlight_end":10},{"text":" });","highlight_start":1,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"json!","def_site_span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1322,"byte_end":1339,"line_start":54,"line_end":54,"column_start":1,"column_end":18,"is_primary":false,"text":[{"text":"macro_rules! json {","highlight_start":1,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}},"macro_decl_name":"json_internal!","def_site_span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1986,"byte_end":2012,"line_start":70,"line_end":70,"column_start":1,"column_end":27,"is_primary":false,"text":[{"text":"macro_rules! json_internal {","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}},"macro_decl_name":"json_internal!","def_site_span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1986,"byte_end":2012,"line_start":70,"line_end":70,"column_start":1,"column_end":27,"is_primary":false,"text":[{"text":"macro_rules! json_internal {","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}},"macro_decl_name":"json_internal!","def_site_span":{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":1986,"byte_end":2012,"line_start":70,"line_end":70,"column_start":1,"column_end":27,"is_primary":false,"text":[{"text":"macro_rules! json_internal {","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"while trying to match `@`","code":null,"level":"note","spans":[{"file_name":"/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs","byte_start":2385,"byte_end":2386,"line_start":79,"line_end":79,"column_start":6,"column_end":7,"is_primary":true,"text":[{"text":" (@array [$($elems:expr,)*]) => {","highlight_start":6,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: unexpected end of macro invocation\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:7:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let workspaces = json!({\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m______________________^\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m [\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m9\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m \"normal\":\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m \"id\": \"0\",\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ]\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m });\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m|______^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mmissing tokens in macro arguments\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: while trying to match `@`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs:79:6\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m79\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m (@array [$($elems:expr,)*]) => {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this error originates in the macro `json_internal` which comes from the expansion of the macro `json` (in Nightly builds, run with -Z macro-backtrace for more info)\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unresolved import `serde`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":4,"byte_end":9,"line_start":1,"line_end":1,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":"use serde::Serialze;","highlight_start":5,"highlight_end":10}],"label":"use of undeclared crate or module `serde`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `serde`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse serde::Serialze;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared crate or module `serde`\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::collections::HashMap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":55,"byte_end":80,"line_start":3,"line_end":3,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":51,"byte_end":81,"line_start":3,"line_end":3,"column_start":1,"column_end":31,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::collections::HashMap`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::collections::HashMap;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"unused import: `std::process::Command`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":86,"byte_end":107,"line_start":4,"line_end":4,"column_start":5,"column_end":26,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":5,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":82,"byte_end":108,"line_start":4,"line_end":4,"column_start":1,"column_end":27,"is_primary":true,"text":[{"text":"use std::process::Command;","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `std::process::Command`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:4:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse std::process::Command;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"aborting due to 2 previous errors; 2 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 2 previous errors; 2 warnings emitted\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"} diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/dep-lib-itoa b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/dep-lib-itoa deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/dep-lib-itoa and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/lib-itoa b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/lib-itoa deleted file mode 100644 index 8b3324e..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/lib-itoa +++ /dev/null @@ -1 +0,0 @@ -b6eb5969c54f4309 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/lib-itoa.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/lib-itoa.json deleted file mode 100644 index c4091f8..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/lib-itoa.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":17114873591667335244,"profile":10243973527296709326,"path":4232842600090596642,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itoa-84f6e0c4cc9a7efb/dep-lib-itoa"}}],"rustflags":[],"metadata":851671291587502216,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/dep-lib-itoa b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/dep-lib-itoa deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/dep-lib-itoa and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/lib-itoa b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/lib-itoa deleted file mode 100644 index 30cf00a..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/lib-itoa +++ /dev/null @@ -1 +0,0 @@ -ebf5c101a6e394a0 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/lib-itoa.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/lib-itoa.json deleted file mode 100644 index 84e69e4..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/lib-itoa.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":17114873591667335244,"profile":12206360443249279867,"path":4232842600090596642,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itoa-ec51ebc890013d88/dep-lib-itoa"}}],"rustflags":[],"metadata":851671291587502216,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/dep-lib-ryu b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/dep-lib-ryu deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/dep-lib-ryu and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/lib-ryu b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/lib-ryu deleted file mode 100644 index 2b6acaf..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/lib-ryu +++ /dev/null @@ -1 +0,0 @@ -70009edcb8c22fb7 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/lib-ryu.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/lib-ryu.json deleted file mode 100644 index 6a7cf59..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/lib-ryu.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":13901881936739684103,"profile":10243973527296709326,"path":16400424727859602988,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ryu-23bbb938a6bdcc37/dep-lib-ryu"}}],"rustflags":[],"metadata":10387617312689919117,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/dep-lib-ryu b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/dep-lib-ryu deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/dep-lib-ryu and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/lib-ryu b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/lib-ryu deleted file mode 100644 index 046c708..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/lib-ryu +++ /dev/null @@ -1 +0,0 @@ -75f290be908f301f \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/lib-ryu.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/lib-ryu.json deleted file mode 100644 index 7a6501b..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/lib-ryu.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":13901881936739684103,"profile":12206360443249279867,"path":16400424727859602988,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ryu-5a33a811a2310270/dep-lib-ryu"}}],"rustflags":[],"metadata":10387617312689919117,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/dep-lib-serde b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/dep-lib-serde deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/dep-lib-serde and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/lib-serde b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/lib-serde deleted file mode 100644 index 854e641..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/lib-serde +++ /dev/null @@ -1 +0,0 @@ -28f2649a84b1a21f \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/lib-serde.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/lib-serde.json deleted file mode 100644 index 6c412c2..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/lib-serde.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[\"default\", \"std\"]","declared_features":"","target":12518487807107382959,"profile":12206360443249279867,"path":4693281428076022971,"deps":[[11756502991321056180,"build_script_build",false,13353985248197884745]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-39cd906ed73a9a8e/dep-lib-serde"}}],"rustflags":[],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/build-script-build-script-build b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/build-script-build-script-build deleted file mode 100644 index 3f7855b..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -bfecef9bf9b71bb0 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/build-script-build-script-build.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/build-script-build-script-build.json deleted file mode 100644 index c6f7ce8..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[\"default\", \"std\"]","declared_features":"","target":2297296889237502566,"profile":13232757476167777671,"path":17111779560721561112,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-759b9073d4cadbe4/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/dep-build-script-build-script-build b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/dep-build-script-build-script-build and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/dep-lib-serde b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/dep-lib-serde deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/dep-lib-serde and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/lib-serde b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/lib-serde deleted file mode 100644 index f8a4b84..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/lib-serde +++ /dev/null @@ -1 +0,0 @@ -85ca7fb94ec0d05a \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/lib-serde.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/lib-serde.json deleted file mode 100644 index 96cdb29..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/lib-serde.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[\"default\", \"std\"]","declared_features":"","target":12518487807107382959,"profile":10243973527296709326,"path":4693281428076022971,"deps":[[11756502991321056180,"build_script_build",false,13353985248197884745]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-9f28ce1717d379a1/dep-lib-serde"}}],"rustflags":[],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/dep-lib-serde b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/dep-lib-serde deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/dep-lib-serde and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/lib-serde b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/lib-serde deleted file mode 100644 index cfd4510..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/lib-serde +++ /dev/null @@ -1 +0,0 @@ -1a1275914f05a59d \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/lib-serde.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/lib-serde.json deleted file mode 100644 index 41f877e..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/lib-serde.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[\"std\"]","declared_features":"","target":12518487807107382959,"profile":10243973527296709326,"path":4693281428076022971,"deps":[[11756502991321056180,"build_script_build",false,5409529547880145074]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-b557008cfb395ff1/dep-lib-serde"}}],"rustflags":[],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d61c7867945224c3/run-build-script-build-script-build b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d61c7867945224c3/run-build-script-build-script-build deleted file mode 100644 index 0731352..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d61c7867945224c3/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -493ba4aed4e252b9 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d61c7867945224c3/run-build-script-build-script-build.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d61c7867945224c3/run-build-script-build-script-build.json deleted file mode 100644 index cc38c7f..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d61c7867945224c3/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11756502991321056180,"build_script_build",false,12689938657737436351]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-d61c7867945224c3/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/build-script-build-script-build b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/build-script-build-script-build deleted file mode 100644 index 713d43c..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -8db719cf4b58fd3c \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/build-script-build-script-build.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/build-script-build-script-build.json deleted file mode 100644 index 02a1345..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[\"std\"]","declared_features":"","target":2297296889237502566,"profile":13232757476167777671,"path":17111779560721561112,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-d689b76c6e6dbfc6/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/dep-build-script-build-script-build b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/dep-build-script-build-script-build and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-f9144fb9fcbfa93c/run-build-script-build-script-build b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-f9144fb9fcbfa93c/run-build-script-build-script-build deleted file mode 100644 index eae7303..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-f9144fb9fcbfa93c/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -b220607f7682124b \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-f9144fb9fcbfa93c/run-build-script-build-script-build.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-f9144fb9fcbfa93c/run-build-script-build-script-build.json deleted file mode 100644 index 54d7e45..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-f9144fb9fcbfa93c/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11756502991321056180,"build_script_build",false,4394765894003832717]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-f9144fb9fcbfa93c/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/dep-lib-serde_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/dep-lib-serde_json deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/dep-lib-serde_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/lib-serde_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/lib-serde_json deleted file mode 100644 index c555c6d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/lib-serde_json +++ /dev/null @@ -1 +0,0 @@ -6c01420704a4833e \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/lib-serde_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/lib-serde_json.json deleted file mode 100644 index 1a0d7da..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/lib-serde_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[\"default\", \"std\"]","declared_features":"","target":1572482250304784865,"profile":10243973527296709326,"path":11692709919491047697,"deps":[[9536766987390807310,"ryu",false,13199983132077326448],[11284357528473424989,"itoa",false,667464879075617718],[11756502991321056180,"serde",false,11359491474412868122],[16596247279872866912,"build_script_build",false,12226636352178483947]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-73d86e7685791abe/dep-lib-serde_json"}}],"rustflags":[],"metadata":16261601059619201932,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/dep-lib-serde_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/dep-lib-serde_json deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/dep-lib-serde_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/lib-serde_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/lib-serde_json deleted file mode 100644 index 371ea36..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/lib-serde_json +++ /dev/null @@ -1 +0,0 @@ -4da978fcec2baf06 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/lib-serde_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/lib-serde_json.json deleted file mode 100644 index b92c675..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/lib-serde_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[\"default\", \"std\"]","declared_features":"","target":1572482250304784865,"profile":10243973527296709326,"path":11692709919491047697,"deps":[[9536766987390807310,"ryu",false,13199983132077326448],[11284357528473424989,"itoa",false,667464879075617718],[11756502991321056180,"serde",false,6543941702921472645],[16596247279872866912,"build_script_build",false,12226636352178483947]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-92539b64353b3b5c/dep-lib-serde_json"}}],"rustflags":[],"metadata":16261601059619201932,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/dep-lib-serde_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/dep-lib-serde_json deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/dep-lib-serde_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/lib-serde_json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/lib-serde_json deleted file mode 100644 index 5e2f78b..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/lib-serde_json +++ /dev/null @@ -1 +0,0 @@ -30b38f157a1ab523 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/lib-serde_json.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/lib-serde_json.json deleted file mode 100644 index f312ec2..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/lib-serde_json.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[\"default\", \"std\"]","declared_features":"","target":1572482250304784865,"profile":12206360443249279867,"path":11692709919491047697,"deps":[[9536766987390807310,"ryu",false,2247454065893110389],[11284357528473424989,"itoa",false,11571123644755211755],[11756502991321056180,"serde",false,2279579544486998568],[16596247279872866912,"build_script_build",false,12226636352178483947]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-a6c6408929de43e3/dep-lib-serde_json"}}],"rustflags":[],"metadata":16261601059619201932,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/build-script-build-script-build b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/build-script-build-script-build deleted file mode 100644 index 2fe0cd5..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -bc4fa57113ba099d \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/build-script-build-script-build.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/build-script-build-script-build.json deleted file mode 100644 index 96a7d6e..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"[\"default\", \"std\"]","declared_features":"","target":427768481117760528,"profile":13232757476167777671,"path":2247412640582524800,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-c5e87bad76cce0eb/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":16261601059619201932,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/dep-build-script-build-script-build b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/dep-build-script-build-script-build deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/dep-build-script-build-script-build and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-e97b75c2f974121b/run-build-script-build-script-build b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-e97b75c2f974121b/run-build-script-build-script-build deleted file mode 100644 index 10ff008..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-e97b75c2f974121b/run-build-script-build-script-build +++ /dev/null @@ -1 +0,0 @@ -ebf27999fbbcada9 \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-e97b75c2f974121b/run-build-script-build-script-build.json b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-e97b75c2f974121b/run-build-script-build-script-build.json deleted file mode 100644 index 7fb7f00..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-e97b75c2f974121b/run-build-script-build-script-build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18004373081649162931,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[16596247279872866912,"build_script_build",false,11315780131418886076]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_json-e97b75c2f974121b/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build-script-build b/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build-script-build deleted file mode 100755 index adbce68..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build-script-build and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4 b/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4 deleted file mode 100755 index adbce68..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4 and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4.d b/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4.d deleted file mode 100644 index 0225c6c..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4.d +++ /dev/null @@ -1,5 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/build.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/build.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/build.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/output b/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/output deleted file mode 100644 index d15ba9a..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rerun-if-changed=build.rs diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/root-output b/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/root-output deleted file mode 100644 index 83c1b57..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/root-output +++ /dev/null @@ -1 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/out \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/stderr b/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build-script-build b/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build-script-build deleted file mode 100755 index e67ee74..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build-script-build and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6 b/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6 deleted file mode 100755 index e67ee74..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6 and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6.d b/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6.d deleted file mode 100644 index 09b4369..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6.d +++ /dev/null @@ -1,5 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/build.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/build.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/build.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/output b/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/output deleted file mode 100644 index d15ba9a..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rerun-if-changed=build.rs diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/root-output b/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/root-output deleted file mode 100644 index 6990eaa..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/root-output +++ /dev/null @@ -1 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/out \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/stderr b/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build-script-build b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build-script-build deleted file mode 100755 index 2b752eb..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build-script-build and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb deleted file mode 100755 index 2b752eb..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb.d b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb.d deleted file mode 100644 index 4ab313c..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb.d +++ /dev/null @@ -1,5 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/build.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/build.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/build.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/invoked.timestamp b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/output b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/output deleted file mode 100644 index 97295a0..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/output +++ /dev/null @@ -1,2 +0,0 @@ -cargo:rerun-if-changed=build.rs -cargo:rustc-cfg=limb_width_64 diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/root-output b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/root-output deleted file mode 100644 index ab36845..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/root-output +++ /dev/null @@ -1 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/out \ No newline at end of file diff --git a/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/stderr b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1989689ce4226823.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1989689ce4226823.d deleted file mode 100644 index 6a0ffc3..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1989689ce4226823.d +++ /dev/null @@ -1,9 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-1989689ce4226823.rmeta: src/main.rs Cargo.toml - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1989689ce4226823.d: src/main.rs Cargo.toml - -src/main.rs: -Cargo.toml: - -# env-dep:CLIPPY_ARGS= -# env-dep:CLIPPY_CONF_DIR diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1f0f5989c50010df.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1f0f5989c50010df.d deleted file mode 100644 index 6bbc36b..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1f0f5989c50010df.d +++ /dev/null @@ -1,9 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-1f0f5989c50010df.rmeta: src/main.rs Cargo.toml - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1f0f5989c50010df.d: src/main.rs Cargo.toml - -src/main.rs: -Cargo.toml: - -# env-dep:CLIPPY_ARGS= -# env-dep:CLIPPY_CONF_DIR diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56 b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56 deleted file mode 100755 index bd90c7b..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56 and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56.d deleted file mode 100644 index db292a3..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56.d +++ /dev/null @@ -1,5 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56: src/main.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56.d: src/main.rs - -src/main.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-4a9142c15e2dfdba.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-4a9142c15e2dfdba.d deleted file mode 100644 index eb042f4..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-4a9142c15e2dfdba.d +++ /dev/null @@ -1,9 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-4a9142c15e2dfdba.rmeta: src/main.rs Cargo.toml - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-4a9142c15e2dfdba.d: src/main.rs Cargo.toml - -src/main.rs: -Cargo.toml: - -# env-dep:CLIPPY_ARGS= -# env-dep:CLIPPY_CONF_DIR diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-9bb2b6eb590f4c27.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-9bb2b6eb590f4c27.d deleted file mode 100644 index 630fbe1..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-9bb2b6eb590f4c27.d +++ /dev/null @@ -1,9 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-9bb2b6eb590f4c27.rmeta: src/main.rs Cargo.toml - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-9bb2b6eb590f4c27.d: src/main.rs Cargo.toml - -src/main.rs: -Cargo.toml: - -# env-dep:CLIPPY_ARGS= -# env-dep:CLIPPY_CONF_DIR diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-a8ee898681b65d59.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-a8ee898681b65d59.d deleted file mode 100644 index 83cc54e..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-a8ee898681b65d59.d +++ /dev/null @@ -1,9 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-a8ee898681b65d59.rmeta: src/main.rs Cargo.toml - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-a8ee898681b65d59.d: src/main.rs Cargo.toml - -src/main.rs: -Cargo.toml: - -# env-dep:CLIPPY_ARGS= -# env-dep:CLIPPY_CONF_DIR diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1 b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1 deleted file mode 100755 index 05e05c4..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1 and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1.d deleted file mode 100644 index 9136f1d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1.d +++ /dev/null @@ -1,5 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1: src/main.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1.d: src/main.rs - -src/main.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-ccde81dba1e919bf.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-ccde81dba1e919bf.d deleted file mode 100644 index df188a9..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-ccde81dba1e919bf.d +++ /dev/null @@ -1,9 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-ccde81dba1e919bf.rmeta: src/main.rs Cargo.toml - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-ccde81dba1e919bf.d: src/main.rs Cargo.toml - -src/main.rs: -Cargo.toml: - -# env-dep:CLIPPY_ARGS= -# env-dep:CLIPPY_CONF_DIR diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e63fb7f112babf73.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e63fb7f112babf73.d deleted file mode 100644 index f192ea6..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e63fb7f112babf73.d +++ /dev/null @@ -1,9 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-e63fb7f112babf73.rmeta: src/main.rs Cargo.toml - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e63fb7f112babf73.d: src/main.rs Cargo.toml - -src/main.rs: -Cargo.toml: - -# env-dep:CLIPPY_ARGS= -# env-dep:CLIPPY_CONF_DIR diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e7d77d8a1c374f61.d b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e7d77d8a1c374f61.d deleted file mode 100644 index 0ba7aaf..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e7d77d8a1c374f61.d +++ /dev/null @@ -1,9 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-e7d77d8a1c374f61.rmeta: src/main.rs Cargo.toml - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e7d77d8a1c374f61.d: src/main.rs Cargo.toml - -src/main.rs: -Cargo.toml: - -# env-dep:CLIPPY_ARGS= -# env-dep:CLIPPY_CONF_DIR diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/itoa-84f6e0c4cc9a7efb.d b/tempdir/hyprland_workspace_json/target/debug/deps/itoa-84f6e0c4cc9a7efb.d deleted file mode 100644 index 7309c16..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/itoa-84f6e0c4cc9a7efb.d +++ /dev/null @@ -1,6 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libitoa-84f6e0c4cc9a7efb.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/udiv128.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/itoa-84f6e0c4cc9a7efb.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/udiv128.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/udiv128.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/itoa-ec51ebc890013d88.d b/tempdir/hyprland_workspace_json/target/debug/deps/itoa-ec51ebc890013d88.d deleted file mode 100644 index 92e17ee..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/itoa-ec51ebc890013d88.d +++ /dev/null @@ -1,8 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/udiv128.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rlib: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/udiv128.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/itoa-ec51ebc890013d88.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/udiv128.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/udiv128.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-1989689ce4226823.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-1989689ce4226823.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-1f0f5989c50010df.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-1f0f5989c50010df.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-4a9142c15e2dfdba.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-4a9142c15e2dfdba.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-9bb2b6eb590f4c27.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-9bb2b6eb590f4c27.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-a8ee898681b65d59.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-a8ee898681b65d59.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-ccde81dba1e919bf.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-ccde81dba1e919bf.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-e63fb7f112babf73.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-e63fb7f112babf73.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-e7d77d8a1c374f61.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libhyprland_workspace_json-e7d77d8a1c374f61.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-84f6e0c4cc9a7efb.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-84f6e0c4cc9a7efb.rmeta deleted file mode 100644 index 8bb4d35..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-84f6e0c4cc9a7efb.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rlib b/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rlib deleted file mode 100644 index a9b0079..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rlib and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rmeta deleted file mode 100644 index 7ff94d7..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libryu-23bbb938a6bdcc37.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libryu-23bbb938a6bdcc37.rmeta deleted file mode 100644 index 4c0c68f..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libryu-23bbb938a6bdcc37.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rlib b/tempdir/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rlib deleted file mode 100644 index d87f7ba..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rlib and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rmeta deleted file mode 100644 index b4babb3..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rlib b/tempdir/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rlib deleted file mode 100644 index 2b226e0..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rlib and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rmeta deleted file mode 100644 index ac31fde..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libserde-9f28ce1717d379a1.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libserde-9f28ce1717d379a1.rmeta deleted file mode 100644 index aeba883..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libserde-9f28ce1717d379a1.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libserde-b557008cfb395ff1.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libserde-b557008cfb395ff1.rmeta deleted file mode 100644 index da35b9d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libserde-b557008cfb395ff1.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-73d86e7685791abe.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-73d86e7685791abe.rmeta deleted file mode 100644 index f70f6fe..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-73d86e7685791abe.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-92539b64353b3b5c.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-92539b64353b3b5c.rmeta deleted file mode 100644 index ff7e987..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-92539b64353b3b5c.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rlib b/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rlib deleted file mode 100644 index c21a1c8..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rlib and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rmeta deleted file mode 100644 index e9aa91c..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rmeta and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/ryu-23bbb938a6bdcc37.d b/tempdir/hyprland_workspace_json/target/debug/deps/ryu-23bbb938a6bdcc37.d deleted file mode 100644 index 80ac2dc..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/ryu-23bbb938a6bdcc37.d +++ /dev/null @@ -1,16 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libryu-23bbb938a6bdcc37.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/buffer/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/common.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_full_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/digit_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/exponent.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mantissa.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/ryu-23bbb938a6bdcc37.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/buffer/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/common.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_full_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/digit_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/exponent.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mantissa.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/buffer/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/common.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_full_table.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_intrinsics.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/digit_table.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s_intrinsics.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/exponent.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mantissa.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/ryu-5a33a811a2310270.d b/tempdir/hyprland_workspace_json/target/debug/deps/ryu-5a33a811a2310270.d deleted file mode 100644 index e5d4505..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/ryu-5a33a811a2310270.d +++ /dev/null @@ -1,18 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/buffer/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/common.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_full_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/digit_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/exponent.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mantissa.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rlib: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/buffer/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/common.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_full_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/digit_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/exponent.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mantissa.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/ryu-5a33a811a2310270.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/buffer/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/common.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_full_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/digit_table.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s_intrinsics.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/exponent.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mantissa.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/buffer/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/common.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_full_table.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/d2s_intrinsics.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/digit_table.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/f2s_intrinsics.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/exponent.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/pretty/mantissa.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/serde-39cd906ed73a9a8e.d b/tempdir/hyprland_workspace_json/target/debug/deps/serde-39cd906ed73a9a8e.d deleted file mode 100644 index 0855948..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/serde-39cd906ed73a9a8e.d +++ /dev/null @@ -1,24 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rlib: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/serde-39cd906ed73a9a8e.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/serde-9f28ce1717d379a1.d b/tempdir/hyprland_workspace_json/target/debug/deps/serde-9f28ce1717d379a1.d deleted file mode 100644 index db762fb..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/serde-9f28ce1717d379a1.d +++ /dev/null @@ -1,22 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libserde-9f28ce1717d379a1.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/serde-9f28ce1717d379a1.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/serde-b557008cfb395ff1.d b/tempdir/hyprland_workspace_json/target/debug/deps/serde-b557008cfb395ff1.d deleted file mode 100644 index b98f9ec..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/serde-b557008cfb395ff1.d +++ /dev/null @@ -1,22 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libserde-b557008cfb395ff1.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/serde-b557008cfb395ff1.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/macros.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/integer128.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/value.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/format.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/ignored_any.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/impls.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/size_hint.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/fmt.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impls.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/ser/impossible.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/de.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/ser.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/private/doc.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.199/src/de/seed.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-73d86e7685791abe.d b/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-73d86e7685791abe.d deleted file mode 100644 index a18989d..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-73d86e7685791abe.d +++ /dev/null @@ -1,20 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libserde_json-73d86e7685791abe.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/serde_json-73d86e7685791abe.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-92539b64353b3b5c.d b/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-92539b64353b3b5c.d deleted file mode 100644 index 4bbb8d3..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-92539b64353b3b5c.d +++ /dev/null @@ -1,20 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libserde_json-92539b64353b3b5c.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/serde_json-92539b64353b3b5c.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-a6c6408929de43e3.d b/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-a6c6408929de43e3.d deleted file mode 100644 index bee5453..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-a6c6408929de43e3.d +++ /dev/null @@ -1,22 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rmeta: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rlib: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs - -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/deps/serde_json-a6c6408929de43e3.d: /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs /home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs - -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/lib.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/macros.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/de.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/error.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/map.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/ser.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/de.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/from.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/index.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/partial_eq.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/value/ser.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/io/mod.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/iter.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/number.rs: -/home/willifan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.116/src/read.rs: diff --git a/tempdir/hyprland_workspace_json/target/debug/hyprland_workspace_json b/tempdir/hyprland_workspace_json/target/debug/hyprland_workspace_json deleted file mode 100755 index 05e05c4..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/hyprland_workspace_json and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/hyprland_workspace_json.d b/tempdir/hyprland_workspace_json/target/debug/hyprland_workspace_json.d deleted file mode 100644 index b9da502..0000000 --- a/tempdir/hyprland_workspace_json/target/debug/hyprland_workspace_json.d +++ /dev/null @@ -1 +0,0 @@ -/mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/target/debug/hyprland_workspace_json: /mnt/data/Fuck_around_and_find_out/hyprland_workspace_json/src/main.rs diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/2ipgdeij5eky4jin.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/2ipgdeij5eky4jin.o deleted file mode 100644 index 0f6ab81..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/2ipgdeij5eky4jin.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/2xhqwbbhfen4mow0.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/2xhqwbbhfen4mow0.o deleted file mode 100644 index 5037b16..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/2xhqwbbhfen4mow0.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/3e5x8knc7umgnlbl.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/3e5x8knc7umgnlbl.o deleted file mode 100644 index 318f030..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/3e5x8knc7umgnlbl.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/3fco93rzjd4i51ht.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/3fco93rzjd4i51ht.o deleted file mode 100644 index 1ede318..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/3fco93rzjd4i51ht.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/4ghwol55wxf7plf5.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/4ghwol55wxf7plf5.o deleted file mode 100644 index c452ee1..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/4ghwol55wxf7plf5.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/5dvuosdvw9u51q03.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/5dvuosdvw9u51q03.o deleted file mode 100644 index 9b26f3e..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/5dvuosdvw9u51q03.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/dep-graph.bin deleted file mode 100644 index 3f88dc9..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/query-cache.bin deleted file mode 100644 index a3badc7..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/work-products.bin deleted file mode 100644 index d0f5081..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/dep-graph.bin deleted file mode 100644 index 2d647c6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/query-cache.bin deleted file mode 100644 index 6549781..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/dep-graph.bin deleted file mode 100644 index a6c81d6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/query-cache.bin deleted file mode 100644 index be45ee0..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/dep-graph.bin deleted file mode 100644 index a6c81d6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/dep-graph.part.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/dep-graph.part.bin deleted file mode 100644 index 46594fb..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/dep-graph.part.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/query-cache.bin deleted file mode 100644 index be45ee0..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/dep-graph.bin deleted file mode 100644 index a6c81d6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/dep-graph.part.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/dep-graph.part.bin deleted file mode 100644 index 13e5fb1..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/dep-graph.part.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/query-cache.bin deleted file mode 100644 index be45ee0..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/dep-graph.bin deleted file mode 100644 index f020f52..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/query-cache.bin deleted file mode 100644 index 5bcd76c..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/dep-graph.bin deleted file mode 100644 index f020f52..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/dep-graph.part.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/dep-graph.part.bin deleted file mode 100644 index f8c1b87..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/dep-graph.part.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/query-cache.bin deleted file mode 100644 index 5bcd76c..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/dep-graph.bin deleted file mode 100644 index f020f52..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/dep-graph.part.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/dep-graph.part.bin deleted file mode 100644 index 3ec8026..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/dep-graph.part.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/query-cache.bin deleted file mode 100644 index 5bcd76c..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/dep-graph.bin deleted file mode 100644 index ad65486..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/query-cache.bin deleted file mode 100644 index 9bc5bdb..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/dep-graph.bin deleted file mode 100644 index ad65486..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/dep-graph.part.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/dep-graph.part.bin deleted file mode 100644 index cc40ca1..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/dep-graph.part.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/query-cache.bin deleted file mode 100644 index 9bc5bdb..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/11hhicogi6poj9yv.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/11hhicogi6poj9yv.o deleted file mode 100644 index 6977f34..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/11hhicogi6poj9yv.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/12guotxfrz5ary81.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/12guotxfrz5ary81.o deleted file mode 100644 index b27748f..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/12guotxfrz5ary81.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/15hej8i6s2ofmper.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/15hej8i6s2ofmper.o deleted file mode 100644 index 3f229d7..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/15hej8i6s2ofmper.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/19zp3ng88sno5ews.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/19zp3ng88sno5ews.o deleted file mode 100644 index 3f04eee..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/19zp3ng88sno5ews.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1e45lgyn6u3b7xqp.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1e45lgyn6u3b7xqp.o deleted file mode 100644 index e7f16ff..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1e45lgyn6u3b7xqp.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1g4hfv7e71mgwky8.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1g4hfv7e71mgwky8.o deleted file mode 100644 index 3ba2123..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1g4hfv7e71mgwky8.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1iiupy0etk0r0vje.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1iiupy0etk0r0vje.o deleted file mode 100644 index 0c2db26..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1iiupy0etk0r0vje.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1jvl8zfsflg4bv91.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1jvl8zfsflg4bv91.o deleted file mode 100644 index fbfe8d8..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1jvl8zfsflg4bv91.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1m1y0wc4be1ysvap.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1m1y0wc4be1ysvap.o deleted file mode 100644 index 47be246..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1m1y0wc4be1ysvap.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1mrwcv0n1jyaun8d.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1mrwcv0n1jyaun8d.o deleted file mode 100644 index 7a7b230..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1mrwcv0n1jyaun8d.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1n22yto7crgi9j69.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1n22yto7crgi9j69.o deleted file mode 100644 index d701aea..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1n22yto7crgi9j69.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1sxf6r331lk3clh9.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1sxf6r331lk3clh9.o deleted file mode 100644 index 43eb4e8..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1sxf6r331lk3clh9.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1v49utlvq8x66zi9.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1v49utlvq8x66zi9.o deleted file mode 100644 index 64863c9..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1v49utlvq8x66zi9.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1xgc0heiusqnwk3h.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1xgc0heiusqnwk3h.o deleted file mode 100644 index 8419636..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1xgc0heiusqnwk3h.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1y0xfq7mooeodl3p.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1y0xfq7mooeodl3p.o deleted file mode 100644 index 7a310f9..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1y0xfq7mooeodl3p.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/21q860qn4batktp3.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/21q860qn4batktp3.o deleted file mode 100644 index 8e8751e..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/21q860qn4batktp3.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2259srjaxz4m3yon.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2259srjaxz4m3yon.o deleted file mode 100644 index ef4d384..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2259srjaxz4m3yon.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/22jz9h6huviyblnl.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/22jz9h6huviyblnl.o deleted file mode 100644 index c40c7ce..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/22jz9h6huviyblnl.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/258dfp0en2shb31f.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/258dfp0en2shb31f.o deleted file mode 100644 index cbb24ea..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/258dfp0en2shb31f.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2fjqfot7nwie0apv.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2fjqfot7nwie0apv.o deleted file mode 100644 index 986bafe..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2fjqfot7nwie0apv.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2iy0gsmw5kt2ygn.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2iy0gsmw5kt2ygn.o deleted file mode 100644 index 844c32a..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2iy0gsmw5kt2ygn.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2rpq3nt6w3ow8zgq.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2rpq3nt6w3ow8zgq.o deleted file mode 100644 index 8d09336..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2rpq3nt6w3ow8zgq.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2s0xm5n072n9zagq.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2s0xm5n072n9zagq.o deleted file mode 100644 index bba3b41..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2s0xm5n072n9zagq.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2utw136ja51nr5k4.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2utw136ja51nr5k4.o deleted file mode 100644 index 7bb20cf..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2utw136ja51nr5k4.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2vs1m4id0srt8i35.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2vs1m4id0srt8i35.o deleted file mode 100644 index 4cc6298..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2vs1m4id0srt8i35.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2w620wma9dhymyz9.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2w620wma9dhymyz9.o deleted file mode 100644 index b93dd24..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2w620wma9dhymyz9.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/33vhdlrknb7hn83p.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/33vhdlrknb7hn83p.o deleted file mode 100644 index c7a1cc8..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/33vhdlrknb7hn83p.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/38hrm2pal8ltwd8a.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/38hrm2pal8ltwd8a.o deleted file mode 100644 index c0ef869..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/38hrm2pal8ltwd8a.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3bn28p2ya091nkgg.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3bn28p2ya091nkgg.o deleted file mode 100644 index 168bcc4..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3bn28p2ya091nkgg.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3eyqnaxpm95keeps.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3eyqnaxpm95keeps.o deleted file mode 100644 index f757648..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3eyqnaxpm95keeps.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3fwr0ges1wig263t.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3fwr0ges1wig263t.o deleted file mode 100644 index 2eff422..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3fwr0ges1wig263t.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3g3r8h53o9rvljmi.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3g3r8h53o9rvljmi.o deleted file mode 100644 index 835f894..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3g3r8h53o9rvljmi.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3udm87t2p4dlij3e.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3udm87t2p4dlij3e.o deleted file mode 100644 index a9e091d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3udm87t2p4dlij3e.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3vf63u1uazuf3m92.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3vf63u1uazuf3m92.o deleted file mode 100644 index 79e21aa..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3vf63u1uazuf3m92.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3xhznf0ci3ncfefm.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3xhznf0ci3ncfefm.o deleted file mode 100644 index 050c221..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3xhznf0ci3ncfefm.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3z1v6r7bxm5l1a7b.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3z1v6r7bxm5l1a7b.o deleted file mode 100644 index 89bc564..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3z1v6r7bxm5l1a7b.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3zjuyed5oxmc90sf.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3zjuyed5oxmc90sf.o deleted file mode 100644 index 517b861..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3zjuyed5oxmc90sf.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/43hnpn5i6rnus3kk.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/43hnpn5i6rnus3kk.o deleted file mode 100644 index afd5d93..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/43hnpn5i6rnus3kk.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/44heagcz20juunm6.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/44heagcz20juunm6.o deleted file mode 100644 index afc3d74..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/44heagcz20juunm6.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/44iwl1vh08pz0e08.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/44iwl1vh08pz0e08.o deleted file mode 100644 index 388168a..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/44iwl1vh08pz0e08.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/47voydpsaenpl521.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/47voydpsaenpl521.o deleted file mode 100644 index 86d6efb..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/47voydpsaenpl521.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/48j70gdrfemrf725.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/48j70gdrfemrf725.o deleted file mode 100644 index d483617..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/48j70gdrfemrf725.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4benea7od19ntyge.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4benea7od19ntyge.o deleted file mode 100644 index 1d99300..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4benea7od19ntyge.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4dc4dnkdq01b9avp.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4dc4dnkdq01b9avp.o deleted file mode 100644 index 430f393..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4dc4dnkdq01b9avp.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4dsovd5isl0e8sm0.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4dsovd5isl0e8sm0.o deleted file mode 100644 index 8a48261..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4dsovd5isl0e8sm0.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4fahqmo5fr91cv98.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4fahqmo5fr91cv98.o deleted file mode 100644 index 89d943a..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4fahqmo5fr91cv98.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4hsvhe87s40kdo3i.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4hsvhe87s40kdo3i.o deleted file mode 100644 index bd1475e..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4hsvhe87s40kdo3i.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4js8ugcfx21h3tpv.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4js8ugcfx21h3tpv.o deleted file mode 100644 index b06da3e..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4js8ugcfx21h3tpv.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4jtkqtyg7j2zh0m0.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4jtkqtyg7j2zh0m0.o deleted file mode 100644 index 61b15e4..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4jtkqtyg7j2zh0m0.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4o9inbzvrri3ispt.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4o9inbzvrri3ispt.o deleted file mode 100644 index 176c0d4..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4o9inbzvrri3ispt.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4s4n0tc4v098wbxa.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4s4n0tc4v098wbxa.o deleted file mode 100644 index 8a083f9..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4s4n0tc4v098wbxa.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4xs75o32nw9vwdyy.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4xs75o32nw9vwdyy.o deleted file mode 100644 index 01f49ef..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4xs75o32nw9vwdyy.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/50btmk8j5s5hyj11.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/50btmk8j5s5hyj11.o deleted file mode 100644 index b25d766..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/50btmk8j5s5hyj11.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5696j7gjldm83u9k.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5696j7gjldm83u9k.o deleted file mode 100644 index 9d18259..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5696j7gjldm83u9k.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/57qw22pe7lq8cwgu.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/57qw22pe7lq8cwgu.o deleted file mode 100644 index 45dc4f5..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/57qw22pe7lq8cwgu.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/57uzi23d4a7etmya.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/57uzi23d4a7etmya.o deleted file mode 100644 index 705d720..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/57uzi23d4a7etmya.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5dbkije9wnmoci2p.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5dbkije9wnmoci2p.o deleted file mode 100644 index 238567e..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5dbkije9wnmoci2p.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5e345vj65csibyea.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5e345vj65csibyea.o deleted file mode 100644 index ef2cc55..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5e345vj65csibyea.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5f1cfebsf56my08u.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5f1cfebsf56my08u.o deleted file mode 100644 index 48efab7..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5f1cfebsf56my08u.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/bg6j6fr5y6191zb.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/bg6j6fr5y6191zb.o deleted file mode 100644 index 90297db..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/bg6j6fr5y6191zb.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/cftvgqx0oy827fa.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/cftvgqx0oy827fa.o deleted file mode 100644 index b1c1036..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/cftvgqx0oy827fa.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/dep-graph.bin deleted file mode 100644 index 62f849d..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/icpg4tvo2dgfvoz.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/icpg4tvo2dgfvoz.o deleted file mode 100644 index 60d885b..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/icpg4tvo2dgfvoz.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/iy4qwgjm9j1fv1g.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/iy4qwgjm9j1fv1g.o deleted file mode 100644 index a7d6099..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/iy4qwgjm9j1fv1g.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/kgsis0na8g9et3n.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/kgsis0na8g9et3n.o deleted file mode 100644 index 887f4fe..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/kgsis0na8g9et3n.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/mh7hqqt6c2wno0k.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/mh7hqqt6c2wno0k.o deleted file mode 100644 index ba72b30..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/mh7hqqt6c2wno0k.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/query-cache.bin deleted file mode 100644 index ae001c2..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/s1qsphcpvdmi3qc.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/s1qsphcpvdmi3qc.o deleted file mode 100644 index 579bf08..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/s1qsphcpvdmi3qc.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/work-products.bin deleted file mode 100644 index 69952f4..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/y6wrz69u9qosdv3.o b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/y6wrz69u9qosdv3.o deleted file mode 100644 index 0b027fd..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/y6wrz69u9qosdv3.o and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/dep-graph.bin deleted file mode 100644 index eaf9812..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/query-cache.bin deleted file mode 100644 index db0c493..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/dep-graph.bin deleted file mode 100644 index eaf9812..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/dep-graph.part.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/dep-graph.part.bin deleted file mode 100644 index 2ec9bcc..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/dep-graph.part.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/query-cache.bin deleted file mode 100644 index db0c493..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/dep-graph.bin deleted file mode 100644 index d26b063..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/query-cache.bin deleted file mode 100644 index 7900712..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/dep-graph.bin deleted file mode 100644 index dbbf1d8..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/query-cache.bin deleted file mode 100644 index 4612584..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/dep-graph.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/dep-graph.bin deleted file mode 100644 index 84741b8..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/dep-graph.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/query-cache.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/query-cache.bin deleted file mode 100644 index d69f6e5..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/query-cache.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/work-products.bin b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/work-products.bin deleted file mode 100644 index d9b1ec6..0000000 Binary files a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/work-products.bin and /dev/null differ diff --git a/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub.lock b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub.lock deleted file mode 100644 index e69de29..0000000 diff --git a/tempdir/rusttest/.gitignore b/tempdir/rusttest/.gitignore deleted file mode 100644 index ea8c4bf..0000000 --- a/tempdir/rusttest/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target diff --git a/tempdir/rusttest/Cargo.lock b/tempdir/rusttest/Cargo.lock deleted file mode 100644 index fa8f3fd..0000000 --- a/tempdir/rusttest/Cargo.lock +++ /dev/null @@ -1,7 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "rusttest" -version = "0.1.0" diff --git a/tempdir/rusttest/Cargo.toml b/tempdir/rusttest/Cargo.toml deleted file mode 100644 index dd2efc3..0000000 --- a/tempdir/rusttest/Cargo.toml +++ /dev/null @@ -1,8 +0,0 @@ -[package] -name = "rusttest" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies]