diff --git a/.gitignore b/.gitignore index cdc2e32..3b1e728 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ scripts/clients/build/ -.vscode/ \ No newline at end of file +.vscode/ + +# Added by cargo + +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..518db83 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,89 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "ewwbar" +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.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b33eb56c327dec362a9e55b3ad14f9d2f0904fb5a5b03b513ab5465399e9f43" +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.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + +[[package]] +name = "serde" +version = "1.0.202" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.202" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "syn" +version = "2.0.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2863d96a84c6439701d7a38f9de935ec562c8832cc55d1dde0f513b52fad106" +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/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f216aa8 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "ewwbar" +version = "0.1.0" +edition = "2021" + +[dependencies] +serde = "1.0.199" +serde_json = "1.0.116" diff --git a/backup/eww/backup/eww/bar/eww.yuck b/backup/eww/backup/eww/bar/eww.yuck deleted file mode 100644 index 3222dfa..0000000 --- a/backup/eww/backup/eww/bar/eww.yuck +++ /dev/null @@ -1,10 +0,0 @@ -(defwindow example - :monitor 0 - :geometry (geometry :x "0%" - :y "20px" - :width "50%" - :height "50px" - :anchor "top center") - :stacking "fg" - "example content") - diff --git a/backup/eww/backup/eww/eww.scss b/backup/eww/backup/eww/eww.scss deleted file mode 100644 index 2e18bdf..0000000 --- a/backup/eww/backup/eww/eww.scss +++ /dev/null @@ -1,70 +0,0 @@ - -.bar { - border-width: 2px; - border-color: #595959; - border-radius: 12.5px; -} - -.calendar { - border-width: 2px; - border-color: #595959; - border-radius: 12.5px; -} - -.power { - border-width: 2px; - border-color: #595959; - border-radius: 12.5px; -} - -.activeWorkspace { - color: green; -} - -.cpu { - color: red; -} - -.ram { - color: green; -} - -.volume { - color: lavender; -} - -.brightness { - color: yellow; -} - -.network { - color: orange; -} - -.bluetooth { - color: lightblue; -} - -.battery { - color: lightgreen; -} - -.batteryLow { - color: red; -} - -.power { - color: darkred; -} - -.time { - -} - -.workspaces { - -} - -.playback { - -} \ No newline at end of file diff --git a/backup/eww/backup/eww/eww.yuck b/backup/eww/backup/eww/eww.yuck deleted file mode 100644 index 5082f4d..0000000 --- a/backup/eww/backup/eww/eww.yuck +++ /dev/null @@ -1,242 +0,0 @@ -;;Input values - - -(deflisten monitors - :initial "[]" - `scripts/monitors.sh`) - -(defvar brightnessValue 96000) - -(defpoll activeNetworks - :interval "2s" - `nmcli connection show --active | awk 'NR>1 && $3!="loopback" { print $1 }'`) - -(deflisten workspaces - :initial "[]" - `scripts/workspaces.sh`) - -(defpoll activeWorkspace - :interval "2s" - `hyprctl activeworkspace | awk 'NR==1{print $3}'`) - -(deflisten bluetooth - :initial "[]" - `scripts/bluetooth.sh`) - -(defvar volumeValue 100) - - -;; Widget templates - - -(defwidget icon [widgetclass ?hover percentage image] - (box - :class "${widgetclass}" - :space-evenly false - (overlay - :tooltip "${hover}" - (circular-progress - :width 20 - :value "${percentage}" - :start-at 75 - :thickness 2 - :clockwise false) - (transform - :scale-x "50%" - :scale-y "50%" - :halign "center" - :valign "center" - :translate-x "16" - :translate-y "16" - (image - :path "${image}" - :image-width "32" - :image-height "32"))))) - - -;; Widgets - - -(defwidget workspaces [] - (box - (for workspace in workspaces - (label - :width "15" - :class {workspace.active == 1 ? "activeWorkspace" :""} - :visible {workspace.occupied == 1 ? "true" : "false"} - :text "${workspace.num}")))) - -(defwidget time [] - (eventbox - :onhover "eww open calendar" - :onhoverlost "eww close calendar" - {formattime(EWW_TIME, "%H:%M:%S")})) - -(defwidget cpu [] - (icon - :widgetclass "cpu" - :hover "${round(EWW_CPU.avg, 1)}%" - :percentage "${round(EWW_CPU.avg, 1)}" - :image "images/cpu.png")) - -(defwidget ram [] - (icon - :widgetclass "ram" - :hover "${round(EWW_RAM.used_mem_perc, 1)}%" - :percentage "${round(EWW_RAM.used_mem_perc, 1)}" - :image "images/ram.png")) - -(defwidget volume [] - (icon - :widgetclass "volume" - :hover "${volumeValue}%" - :percentage "${volumeValue}" - :image "images/volume.png")) - -(defwidget brightness [] - (icon - :widgetclass "brightness" - :hover "${brightnessValue / 960}%" - :percentage "${brightnessValue / 960}" - :image "images/brightness.png")) - -(defwidget network [] - (icon - :widgetclass "network" - :hover "${activeNetworks}" - :percentage "0" - :image "images/wifi.png")) - -;;(defwidget bluetooth [] -;; (icon -;; :widgetclass "bluetooth" -;; :hover "${bluetoothDevices}" -;; :percentage "${bluetoothBattery}" -;; :image "images/bluetooth.png")) - -(defwidget battery [] - (icon - :widgetclass {EWW_BATTERY.BAT1.status == "Charging" ? "battery" : EWW_BATTERY.total_avg > 25 ? "battery" : "batteryLow"} - :hover "${round(EWW_BATTERY.total_avg, 1)}%" - :percentage "${round(EWW_BATTERY.total_avg, 1)}" - :image {EWW_BATTERY.BAT1.status == "Charging" ? "images/charging.png" : EWW_BATTERY.total_avg > 25 ? "images/battery.png" : "images/batteryLow.png"})) - -(defwidget power [] - (icon - :widgetclass "power" - :hover "placeholder" - :percentage "0" - :image "images/power.png")) - -(defwidget space [] - (box - :width 5)) - -(defwidget seperator [] - (box - :width 20 - (label - :text "|" - ))) - -(defwidget cal [] - (calendar - :day {formattime(EWW_TIME, "%d")} - :month {formattime(EWW_TIME, "%m")} - :year {formattime(EWW_TIME, "%y")})) - -(defwidget winPower [] - (box - :orientation "v" - (box - :halign "end" - (power)))) - - -;; Widget blocks - - -(defwidget start [] - (box - :orientation "h" - :space-evenly false - :halign "start" - (space) - (workspaces))) - -(defwidget center [] - (box - :orientation "h" - :space-evenly false - :halign "center" - (time))) - -(defwidget end [] - (box - :orientation "h" - :space-evenly false - :halign "end" - (cpu) - (space) - (ram) - (seperator) - (volume) - (space) - (brightness) - (seperator) - (network) - (space) -;; (bluetooth) - (seperator) - (battery) - (space) - (power))) - -(defwidget bar [] - (centerbox :orientation "h" - (start) - (center) - (end))) - - -;; Window definition - - -(defwindow bar - :monitor 0 - :class "bar" - :geometry (geometry - :x "0%" - :y "5px" - :width "1279px" - :height "3%" - :anchor "top center") - :stacking "fg" - :exclusive true - (bar)) - -(defwindow calendar - :monitor 0 - :class "calendar" - :geometry - (geometry - :x "0%" - :y "5px" - :width "0%" - :height "0%" - :anchor "top center") - :stacking "overlay" - (cal)) - -(defwindow power - :monitor 0 - :class "bars" - :geometry - (geometry - :x "5px" - :y "5px" - :width "2%" - :height "3%" - :anchor "top right") - :stacking "fg" - (winPower)) \ No newline at end of file diff --git a/backup/eww/backup/eww/images/battery.png b/backup/eww/backup/eww/images/battery.png deleted file mode 100644 index 1cd9224..0000000 Binary files a/backup/eww/backup/eww/images/battery.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/batteryLow.png b/backup/eww/backup/eww/images/batteryLow.png deleted file mode 100644 index 2671d09..0000000 Binary files a/backup/eww/backup/eww/images/batteryLow.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/batteryOriginal.png b/backup/eww/backup/eww/images/batteryOriginal.png deleted file mode 100644 index d242922..0000000 Binary files a/backup/eww/backup/eww/images/batteryOriginal.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/bluetooth.png b/backup/eww/backup/eww/images/bluetooth.png deleted file mode 100644 index 86b42c2..0000000 Binary files a/backup/eww/backup/eww/images/bluetooth.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/bluetoothOriginal.png b/backup/eww/backup/eww/images/bluetoothOriginal.png deleted file mode 100644 index f85b8e5..0000000 Binary files a/backup/eww/backup/eww/images/bluetoothOriginal.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/brightness.png b/backup/eww/backup/eww/images/brightness.png deleted file mode 100644 index 06244f4..0000000 Binary files a/backup/eww/backup/eww/images/brightness.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/brightnessOriginal.png b/backup/eww/backup/eww/images/brightnessOriginal.png deleted file mode 100644 index 1291ac8..0000000 Binary files a/backup/eww/backup/eww/images/brightnessOriginal.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/charging.png b/backup/eww/backup/eww/images/charging.png deleted file mode 100644 index cc8a181..0000000 Binary files a/backup/eww/backup/eww/images/charging.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/chargingOriginal.png b/backup/eww/backup/eww/images/chargingOriginal.png deleted file mode 100644 index 0f12c0f..0000000 Binary files a/backup/eww/backup/eww/images/chargingOriginal.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/cpu.png b/backup/eww/backup/eww/images/cpu.png deleted file mode 100644 index 1b5ede4..0000000 Binary files a/backup/eww/backup/eww/images/cpu.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/cpuOriginal.png b/backup/eww/backup/eww/images/cpuOriginal.png deleted file mode 100644 index 889161c..0000000 Binary files a/backup/eww/backup/eww/images/cpuOriginal.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/power.png b/backup/eww/backup/eww/images/power.png deleted file mode 100644 index ef99429..0000000 Binary files a/backup/eww/backup/eww/images/power.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/powerOriginal.png b/backup/eww/backup/eww/images/powerOriginal.png deleted file mode 100644 index 07b6ac0..0000000 Binary files a/backup/eww/backup/eww/images/powerOriginal.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/ram.png b/backup/eww/backup/eww/images/ram.png deleted file mode 100644 index c577e6f..0000000 Binary files a/backup/eww/backup/eww/images/ram.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/ramOriginal.png b/backup/eww/backup/eww/images/ramOriginal.png deleted file mode 100644 index b94361b..0000000 Binary files a/backup/eww/backup/eww/images/ramOriginal.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/test.png b/backup/eww/backup/eww/images/test.png deleted file mode 100644 index 7aa7aa2..0000000 Binary files a/backup/eww/backup/eww/images/test.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/volume.png b/backup/eww/backup/eww/images/volume.png deleted file mode 100644 index c7d8831..0000000 Binary files a/backup/eww/backup/eww/images/volume.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/volumeOriginal.png b/backup/eww/backup/eww/images/volumeOriginal.png deleted file mode 100644 index 84c4565..0000000 Binary files a/backup/eww/backup/eww/images/volumeOriginal.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/wifi.png b/backup/eww/backup/eww/images/wifi.png deleted file mode 100644 index a898c77..0000000 Binary files a/backup/eww/backup/eww/images/wifi.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/wifiLow.png b/backup/eww/backup/eww/images/wifiLow.png deleted file mode 100644 index be8bde2..0000000 Binary files a/backup/eww/backup/eww/images/wifiLow.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/wifiMedium.png b/backup/eww/backup/eww/images/wifiMedium.png deleted file mode 100644 index f71adc6..0000000 Binary files a/backup/eww/backup/eww/images/wifiMedium.png and /dev/null differ diff --git a/backup/eww/backup/eww/images/wifiOriginal.png b/backup/eww/backup/eww/images/wifiOriginal.png deleted file mode 100644 index 6cef0c8..0000000 Binary files a/backup/eww/backup/eww/images/wifiOriginal.png and /dev/null differ diff --git a/backup/eww/backup/eww/scripts/bluetooth.sh b/backup/eww/backup/eww/scripts/bluetooth.sh deleted file mode 100755 index 1ede5c4..0000000 --- a/backup/eww/backup/eww/scripts/bluetooth.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# Get the list of connected Bluetooth devices -devices=$(bluetoothctl devices Connected | awk '{print $2}') - -# Iterate through each device and get its name and battery percentage -for device in $devices; do - # Get the device info using bluetoothctl - info=$(bluetoothctl info $device) - - # Extract the name and battery percentage from the device info - name=$(echo "$info" | grep "Name" | awk '{ for(i=2; i<=NF; i++) printf "%s ", $i;}') - battery=$(echo "$info" | grep "Battery" | awk '{print $4}' | tr -d '()') -done - -eww update bluetoothDevices="$name: $battery%" - -eww update bluetoothBattery="$battery" - -if [[ !$devices ]]; then - eww update bluetoothBattery="0" -fi \ No newline at end of file diff --git a/backup/eww/backup/eww/scripts/brightness.sh b/backup/eww/backup/eww/scripts/brightness.sh deleted file mode 100755 index 460bb6d..0000000 --- a/backup/eww/backup/eww/scripts/brightness.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -brightness_file="/sys/class/backlight/intel_backlight/brightness" -min_brightness=1 -max_brightness=96000 - -# Check if an argument is provided -if [[ -z $1 ]]; then - echo "Error: Number argument is missing." - exit 1 -fi - -# Retrieve the argument value -number_to_add=$1 - -# Validate if the argument is a number -if ! [[ $number_to_add =~ ^-?[0-9]+$ ]]; then - echo "Error: Invalid number argument." - exit 1 -fi - -# Read the current brightness value from the file -current_brightness=$(cat "$brightness_file") - -# Add the desired number to the current brightness -new_brightness=$((current_brightness + number_to_add)) - -# Enforce minimum and maximum brightness values -if (( new_brightness < min_brightness )); then - new_brightness=$min_brightness -elif (( new_brightness > max_brightness )); then - new_brightness=$max_brightness -fi - -# Write the new brightness value back to the file -echo "$new_brightness" >> "$brightness_file" - -eww update brightnessValue="$new_brightness" diff --git a/backup/eww/backup/eww/scripts/monitors.sh b/backup/eww/backup/eww/scripts/monitors.sh deleted file mode 100755 index 9151c0f..0000000 --- a/backup/eww/backup/eww/scripts/monitors.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -declare -A id -declare -A horizontal -declare -A vertical -declare -A scale - -generate() { - - while read -r k h v s f; do - id[$k]="$k" - horizontal[$k]="$h" - vertical[$k]="$v" - scale[$k]="$s" - done < <(hyprctl monitors -j | jq -r '.[]|"\(.id) \(.width) \(.height) \(.scale)"') - - echo -n '[' - - for ((i = 0; i < ${#id[@]}; i++)); do - echo -n ''$([ $i -eq 0 ] || echo ,)'{"id":"'$i'","width":"'${horizontal[$i]}'","height":"'${vertical[$i]}'",".scale":"'${scale[$i]}'"}' - done - - echo ']' - -} - -generate - -socat -u UNIX-CONNECT:/tmp/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | while read -r line; do - if [[ ${line%>>*} == "monitor"* ]]; then - generate - fi -done - diff --git a/backup/eww/backup/eww/scripts/sussy.sh b/backup/eww/backup/eww/scripts/sussy.sh deleted file mode 100755 index bf4a651..0000000 --- a/backup/eww/backup/eww/scripts/sussy.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -whoami > /home/willifan/text.txt \ No newline at end of file diff --git a/backup/eww/backup/eww/scripts/test.sh b/backup/eww/backup/eww/scripts/test.sh deleted file mode 100755 index e11b7fc..0000000 --- a/backup/eww/backup/eww/scripts/test.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -#!/bin/bash - -windows=() -workspaces=() -i=0 -while read -r k v; do - windows[$i]="$k" - i=$i+1 - workspaces[$i]="$v" -done < <(hyprctl clients -j | jq -r '.[]|"\(.pid) \(.workspace.id)"') - -for window in ${!windows[@]}; do - echo $(ps -p ${windows[$window]} -o comm=) -done - -test=$(ps -p ${windows[5]} -o comm=) -$(feh /usr/share/icons/Papirus-Dark/128x128/apps/${test}.svg) \ No newline at end of file diff --git a/backup/eww/backup/eww/scripts/volume.sh b/backup/eww/backup/eww/scripts/volume.sh deleted file mode 100755 index 494db4c..0000000 --- a/backup/eww/backup/eww/scripts/volume.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -min_volume="0" -max_volume="100" - -# Check if an argument is provided -if [[ -z $1 ]]; then - echo "Error: Number argument is missing." - exit 1 -fi - -# Retrieve the argument value -number_to_add=$1 - -# Validate if the argument is a number -if ! [[ $number_to_add =~ ^-?[0-9]+$ ]]; then - echo "Error: Invalid number argument." - exit 1 -fi - -# Read the current brightness value from the file -current_volume=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2 * 100}') - -# Add the desired number to the current brightness -new_volume=$((current_volume + number_to_add)) - -# Enforce minimum and maximum brightness values -if (( new_volume < min_volume )); then - new_volume=$min_volume -elif (( new_volume > max_volume )); then - new_volume=$max_volume -fi - -wpctl set-volume @DEFAULT_AUDIO_SINK@ "${new_volume}%" - -eww update volumeValue="$new_volume" diff --git a/backup/eww/backup/eww/scripts/workspaces.sh b/backup/eww/backup/eww/scripts/workspaces.sh deleted file mode 100755 index 1c23029..0000000 --- a/backup/eww/backup/eww/scripts/workspaces.sh +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/bash - -# get initial focused workspace -focusedws=$(hyprctl -j monitors | jq -r '.[] | select(.focused == true) | .activeWorkspace.id') - -declare -A o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0) -declare -A monitormap -declare -A workspaces - -# handle workspace create/destroy -workspace_event() { - if (( $1 <= 10 )); then - o[$1]=$2 - while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - fi - if [ "$2" == "0" ]; then - unset "workspaces[$1]" - fi -} - -# handle monitor (dis)connects -monitor_event() { - while read -r k v; do monitormap["$k"]=$v; done < <(hyprctl -j monitors | jq -r '.[]|"\(.name) \(.id) "') -} - -# generate the json for eww -generate() { - - activeWorkspace=$(hyprctl -j monitors | jq -r '.[] | select(.focused == true) | .activeWorkspace.id') - - echo -n '[' - - for i in {1..10}; do - active=0 - if [[ $activeWorkspace == $i ]]; then - active=1 - fi - echo -n ''$([ $i -eq 1 ] || echo ,)'{"num":"'$i'","occupied":"'${o[$i]}'","active":"'$active'"}' - # echo -n ''$([ $i -eq 1 ] || echo ,) '{ "number": "'"$i"'", "activity": "'"$(status_activity $i)"'", "color": "'$(status "$i")'" }' - done - - # echo -n ',{"num":"'$focusedws'","clr":"'$(status "$focusedws")'"}' - - echo ']' -} - -# setup - -# add monitors -monitor_event - -# add workspaces -while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - -# get active workspace -activeWorkspace=$(hyprctl -j monitors | jq -r '.[] | select(.focused == true) | .activeWorkspace.id') - -# check occupied workspaces -for num in "${!workspaces[@]}"; do - o[$num]=1 -done -# generate initial widget -generate - -socat -u UNIX-CONNECT:/tmp/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | while read -r line; do - # echo "${#workspaces[@]} ${#o[@]}" - # echo $line - case ${line%>>*} in - "focusedmon") - focusedws=${line#*,} - generate - ;; - "createworkspace") - # workspace_event "${line#*>>}" 1 - o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0) - workspaces=() - # add workspaces - while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - # check occupied workspaces - for num in "${!workspaces[@]}"; do - o[$num]=1 - done - # focusedws=${line#*>>} - generate - ;; - "movewindow") - generate - ;; - "destroyworkspace") - # workspace_event "${line#*>>}" 0 - o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0) - workspaces=() - # add workspaces - while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - # check occupied workspaces - for num in "${!workspaces[@]}"; do - o[$num]=1 - done - generate - ;; - "monitor"*) - monitor_event - generate - ;; - "workspace") - - generate - ;; - esac - # echo $line - # generate -done - diff --git a/backup/eww/bar/eww.yuck b/backup/eww/bar/eww.yuck deleted file mode 100644 index 3222dfa..0000000 --- a/backup/eww/bar/eww.yuck +++ /dev/null @@ -1,10 +0,0 @@ -(defwindow example - :monitor 0 - :geometry (geometry :x "0%" - :y "20px" - :width "50%" - :height "50px" - :anchor "top center") - :stacking "fg" - "example content") - diff --git a/backup/eww/eww.scss b/backup/eww/eww.scss deleted file mode 100644 index 2e18bdf..0000000 --- a/backup/eww/eww.scss +++ /dev/null @@ -1,70 +0,0 @@ - -.bar { - border-width: 2px; - border-color: #595959; - border-radius: 12.5px; -} - -.calendar { - border-width: 2px; - border-color: #595959; - border-radius: 12.5px; -} - -.power { - border-width: 2px; - border-color: #595959; - border-radius: 12.5px; -} - -.activeWorkspace { - color: green; -} - -.cpu { - color: red; -} - -.ram { - color: green; -} - -.volume { - color: lavender; -} - -.brightness { - color: yellow; -} - -.network { - color: orange; -} - -.bluetooth { - color: lightblue; -} - -.battery { - color: lightgreen; -} - -.batteryLow { - color: red; -} - -.power { - color: darkred; -} - -.time { - -} - -.workspaces { - -} - -.playback { - -} \ No newline at end of file diff --git a/backup/eww/eww.yuck b/backup/eww/eww.yuck deleted file mode 100644 index 5082f4d..0000000 --- a/backup/eww/eww.yuck +++ /dev/null @@ -1,242 +0,0 @@ -;;Input values - - -(deflisten monitors - :initial "[]" - `scripts/monitors.sh`) - -(defvar brightnessValue 96000) - -(defpoll activeNetworks - :interval "2s" - `nmcli connection show --active | awk 'NR>1 && $3!="loopback" { print $1 }'`) - -(deflisten workspaces - :initial "[]" - `scripts/workspaces.sh`) - -(defpoll activeWorkspace - :interval "2s" - `hyprctl activeworkspace | awk 'NR==1{print $3}'`) - -(deflisten bluetooth - :initial "[]" - `scripts/bluetooth.sh`) - -(defvar volumeValue 100) - - -;; Widget templates - - -(defwidget icon [widgetclass ?hover percentage image] - (box - :class "${widgetclass}" - :space-evenly false - (overlay - :tooltip "${hover}" - (circular-progress - :width 20 - :value "${percentage}" - :start-at 75 - :thickness 2 - :clockwise false) - (transform - :scale-x "50%" - :scale-y "50%" - :halign "center" - :valign "center" - :translate-x "16" - :translate-y "16" - (image - :path "${image}" - :image-width "32" - :image-height "32"))))) - - -;; Widgets - - -(defwidget workspaces [] - (box - (for workspace in workspaces - (label - :width "15" - :class {workspace.active == 1 ? "activeWorkspace" :""} - :visible {workspace.occupied == 1 ? "true" : "false"} - :text "${workspace.num}")))) - -(defwidget time [] - (eventbox - :onhover "eww open calendar" - :onhoverlost "eww close calendar" - {formattime(EWW_TIME, "%H:%M:%S")})) - -(defwidget cpu [] - (icon - :widgetclass "cpu" - :hover "${round(EWW_CPU.avg, 1)}%" - :percentage "${round(EWW_CPU.avg, 1)}" - :image "images/cpu.png")) - -(defwidget ram [] - (icon - :widgetclass "ram" - :hover "${round(EWW_RAM.used_mem_perc, 1)}%" - :percentage "${round(EWW_RAM.used_mem_perc, 1)}" - :image "images/ram.png")) - -(defwidget volume [] - (icon - :widgetclass "volume" - :hover "${volumeValue}%" - :percentage "${volumeValue}" - :image "images/volume.png")) - -(defwidget brightness [] - (icon - :widgetclass "brightness" - :hover "${brightnessValue / 960}%" - :percentage "${brightnessValue / 960}" - :image "images/brightness.png")) - -(defwidget network [] - (icon - :widgetclass "network" - :hover "${activeNetworks}" - :percentage "0" - :image "images/wifi.png")) - -;;(defwidget bluetooth [] -;; (icon -;; :widgetclass "bluetooth" -;; :hover "${bluetoothDevices}" -;; :percentage "${bluetoothBattery}" -;; :image "images/bluetooth.png")) - -(defwidget battery [] - (icon - :widgetclass {EWW_BATTERY.BAT1.status == "Charging" ? "battery" : EWW_BATTERY.total_avg > 25 ? "battery" : "batteryLow"} - :hover "${round(EWW_BATTERY.total_avg, 1)}%" - :percentage "${round(EWW_BATTERY.total_avg, 1)}" - :image {EWW_BATTERY.BAT1.status == "Charging" ? "images/charging.png" : EWW_BATTERY.total_avg > 25 ? "images/battery.png" : "images/batteryLow.png"})) - -(defwidget power [] - (icon - :widgetclass "power" - :hover "placeholder" - :percentage "0" - :image "images/power.png")) - -(defwidget space [] - (box - :width 5)) - -(defwidget seperator [] - (box - :width 20 - (label - :text "|" - ))) - -(defwidget cal [] - (calendar - :day {formattime(EWW_TIME, "%d")} - :month {formattime(EWW_TIME, "%m")} - :year {formattime(EWW_TIME, "%y")})) - -(defwidget winPower [] - (box - :orientation "v" - (box - :halign "end" - (power)))) - - -;; Widget blocks - - -(defwidget start [] - (box - :orientation "h" - :space-evenly false - :halign "start" - (space) - (workspaces))) - -(defwidget center [] - (box - :orientation "h" - :space-evenly false - :halign "center" - (time))) - -(defwidget end [] - (box - :orientation "h" - :space-evenly false - :halign "end" - (cpu) - (space) - (ram) - (seperator) - (volume) - (space) - (brightness) - (seperator) - (network) - (space) -;; (bluetooth) - (seperator) - (battery) - (space) - (power))) - -(defwidget bar [] - (centerbox :orientation "h" - (start) - (center) - (end))) - - -;; Window definition - - -(defwindow bar - :monitor 0 - :class "bar" - :geometry (geometry - :x "0%" - :y "5px" - :width "1279px" - :height "3%" - :anchor "top center") - :stacking "fg" - :exclusive true - (bar)) - -(defwindow calendar - :monitor 0 - :class "calendar" - :geometry - (geometry - :x "0%" - :y "5px" - :width "0%" - :height "0%" - :anchor "top center") - :stacking "overlay" - (cal)) - -(defwindow power - :monitor 0 - :class "bars" - :geometry - (geometry - :x "5px" - :y "5px" - :width "2%" - :height "3%" - :anchor "top right") - :stacking "fg" - (winPower)) \ No newline at end of file diff --git a/backup/eww/images/battery.png b/backup/eww/images/battery.png deleted file mode 100644 index 1cd9224..0000000 Binary files a/backup/eww/images/battery.png and /dev/null differ diff --git a/backup/eww/images/batteryLow.png b/backup/eww/images/batteryLow.png deleted file mode 100644 index 2671d09..0000000 Binary files a/backup/eww/images/batteryLow.png and /dev/null differ diff --git a/backup/eww/images/batteryOriginal.png b/backup/eww/images/batteryOriginal.png deleted file mode 100644 index d242922..0000000 Binary files a/backup/eww/images/batteryOriginal.png and /dev/null differ diff --git a/backup/eww/images/bluetooth.png b/backup/eww/images/bluetooth.png deleted file mode 100644 index 86b42c2..0000000 Binary files a/backup/eww/images/bluetooth.png and /dev/null differ diff --git a/backup/eww/images/bluetoothOriginal.png b/backup/eww/images/bluetoothOriginal.png deleted file mode 100644 index f85b8e5..0000000 Binary files a/backup/eww/images/bluetoothOriginal.png and /dev/null differ diff --git a/backup/eww/images/brightness.png b/backup/eww/images/brightness.png deleted file mode 100644 index 06244f4..0000000 Binary files a/backup/eww/images/brightness.png and /dev/null differ diff --git a/backup/eww/images/brightnessOriginal.png b/backup/eww/images/brightnessOriginal.png deleted file mode 100644 index 1291ac8..0000000 Binary files a/backup/eww/images/brightnessOriginal.png and /dev/null differ diff --git a/backup/eww/images/charging.png b/backup/eww/images/charging.png deleted file mode 100644 index cc8a181..0000000 Binary files a/backup/eww/images/charging.png and /dev/null differ diff --git a/backup/eww/images/chargingOriginal.png b/backup/eww/images/chargingOriginal.png deleted file mode 100644 index 0f12c0f..0000000 Binary files a/backup/eww/images/chargingOriginal.png and /dev/null differ diff --git a/backup/eww/images/cpu.png b/backup/eww/images/cpu.png deleted file mode 100644 index 1b5ede4..0000000 Binary files a/backup/eww/images/cpu.png and /dev/null differ diff --git a/backup/eww/images/cpuOriginal.png b/backup/eww/images/cpuOriginal.png deleted file mode 100644 index 889161c..0000000 Binary files a/backup/eww/images/cpuOriginal.png and /dev/null differ diff --git a/backup/eww/images/power.png b/backup/eww/images/power.png deleted file mode 100644 index ef99429..0000000 Binary files a/backup/eww/images/power.png and /dev/null differ diff --git a/backup/eww/images/powerOriginal.png b/backup/eww/images/powerOriginal.png deleted file mode 100644 index 07b6ac0..0000000 Binary files a/backup/eww/images/powerOriginal.png and /dev/null differ diff --git a/backup/eww/images/ram.png b/backup/eww/images/ram.png deleted file mode 100644 index c577e6f..0000000 Binary files a/backup/eww/images/ram.png and /dev/null differ diff --git a/backup/eww/images/ramOriginal.png b/backup/eww/images/ramOriginal.png deleted file mode 100644 index b94361b..0000000 Binary files a/backup/eww/images/ramOriginal.png and /dev/null differ diff --git a/backup/eww/images/test.png b/backup/eww/images/test.png deleted file mode 100644 index 7aa7aa2..0000000 Binary files a/backup/eww/images/test.png and /dev/null differ diff --git a/backup/eww/images/volume.png b/backup/eww/images/volume.png deleted file mode 100644 index c7d8831..0000000 Binary files a/backup/eww/images/volume.png and /dev/null differ diff --git a/backup/eww/images/volumeOriginal.png b/backup/eww/images/volumeOriginal.png deleted file mode 100644 index 84c4565..0000000 Binary files a/backup/eww/images/volumeOriginal.png and /dev/null differ diff --git a/backup/eww/images/wifi.png b/backup/eww/images/wifi.png deleted file mode 100644 index a898c77..0000000 Binary files a/backup/eww/images/wifi.png and /dev/null differ diff --git a/backup/eww/images/wifiLow.png b/backup/eww/images/wifiLow.png deleted file mode 100644 index be8bde2..0000000 Binary files a/backup/eww/images/wifiLow.png and /dev/null differ diff --git a/backup/eww/images/wifiMedium.png b/backup/eww/images/wifiMedium.png deleted file mode 100644 index f71adc6..0000000 Binary files a/backup/eww/images/wifiMedium.png and /dev/null differ diff --git a/backup/eww/images/wifiOriginal.png b/backup/eww/images/wifiOriginal.png deleted file mode 100644 index 6cef0c8..0000000 Binary files a/backup/eww/images/wifiOriginal.png and /dev/null differ diff --git a/backup/eww/scripts/backup.sh b/backup/eww/scripts/backup.sh deleted file mode 100755 index 9fc7c5b..0000000 --- a/backup/eww/scripts/backup.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -rsync -av --exclude='/backup/' /home/willifan/.config/eww /home/willifan/.config/eww/backup \ No newline at end of file diff --git a/backup/eww/scripts/bluetooth.sh b/backup/eww/scripts/bluetooth.sh deleted file mode 100755 index 1ede5c4..0000000 --- a/backup/eww/scripts/bluetooth.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# Get the list of connected Bluetooth devices -devices=$(bluetoothctl devices Connected | awk '{print $2}') - -# Iterate through each device and get its name and battery percentage -for device in $devices; do - # Get the device info using bluetoothctl - info=$(bluetoothctl info $device) - - # Extract the name and battery percentage from the device info - name=$(echo "$info" | grep "Name" | awk '{ for(i=2; i<=NF; i++) printf "%s ", $i;}') - battery=$(echo "$info" | grep "Battery" | awk '{print $4}' | tr -d '()') -done - -eww update bluetoothDevices="$name: $battery%" - -eww update bluetoothBattery="$battery" - -if [[ !$devices ]]; then - eww update bluetoothBattery="0" -fi \ No newline at end of file diff --git a/backup/eww/scripts/brightness.sh b/backup/eww/scripts/brightness.sh deleted file mode 100755 index 460bb6d..0000000 --- a/backup/eww/scripts/brightness.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -brightness_file="/sys/class/backlight/intel_backlight/brightness" -min_brightness=1 -max_brightness=96000 - -# Check if an argument is provided -if [[ -z $1 ]]; then - echo "Error: Number argument is missing." - exit 1 -fi - -# Retrieve the argument value -number_to_add=$1 - -# Validate if the argument is a number -if ! [[ $number_to_add =~ ^-?[0-9]+$ ]]; then - echo "Error: Invalid number argument." - exit 1 -fi - -# Read the current brightness value from the file -current_brightness=$(cat "$brightness_file") - -# Add the desired number to the current brightness -new_brightness=$((current_brightness + number_to_add)) - -# Enforce minimum and maximum brightness values -if (( new_brightness < min_brightness )); then - new_brightness=$min_brightness -elif (( new_brightness > max_brightness )); then - new_brightness=$max_brightness -fi - -# Write the new brightness value back to the file -echo "$new_brightness" >> "$brightness_file" - -eww update brightnessValue="$new_brightness" diff --git a/backup/eww/scripts/monitors.sh b/backup/eww/scripts/monitors.sh deleted file mode 100755 index 9151c0f..0000000 --- a/backup/eww/scripts/monitors.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -declare -A id -declare -A horizontal -declare -A vertical -declare -A scale - -generate() { - - while read -r k h v s f; do - id[$k]="$k" - horizontal[$k]="$h" - vertical[$k]="$v" - scale[$k]="$s" - done < <(hyprctl monitors -j | jq -r '.[]|"\(.id) \(.width) \(.height) \(.scale)"') - - echo -n '[' - - for ((i = 0; i < ${#id[@]}; i++)); do - echo -n ''$([ $i -eq 0 ] || echo ,)'{"id":"'$i'","width":"'${horizontal[$i]}'","height":"'${vertical[$i]}'",".scale":"'${scale[$i]}'"}' - done - - echo ']' - -} - -generate - -socat -u UNIX-CONNECT:/tmp/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | while read -r line; do - if [[ ${line%>>*} == "monitor"* ]]; then - generate - fi -done - diff --git a/backup/eww/scripts/sussy.sh b/backup/eww/scripts/sussy.sh deleted file mode 100755 index bf4a651..0000000 --- a/backup/eww/scripts/sussy.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -whoami > /home/willifan/text.txt \ No newline at end of file diff --git a/backup/eww/scripts/test.sh b/backup/eww/scripts/test.sh deleted file mode 100755 index e11b7fc..0000000 --- a/backup/eww/scripts/test.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -#!/bin/bash - -windows=() -workspaces=() -i=0 -while read -r k v; do - windows[$i]="$k" - i=$i+1 - workspaces[$i]="$v" -done < <(hyprctl clients -j | jq -r '.[]|"\(.pid) \(.workspace.id)"') - -for window in ${!windows[@]}; do - echo $(ps -p ${windows[$window]} -o comm=) -done - -test=$(ps -p ${windows[5]} -o comm=) -$(feh /usr/share/icons/Papirus-Dark/128x128/apps/${test}.svg) \ No newline at end of file diff --git a/backup/eww/scripts/volume.sh b/backup/eww/scripts/volume.sh deleted file mode 100755 index 494db4c..0000000 --- a/backup/eww/scripts/volume.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -min_volume="0" -max_volume="100" - -# Check if an argument is provided -if [[ -z $1 ]]; then - echo "Error: Number argument is missing." - exit 1 -fi - -# Retrieve the argument value -number_to_add=$1 - -# Validate if the argument is a number -if ! [[ $number_to_add =~ ^-?[0-9]+$ ]]; then - echo "Error: Invalid number argument." - exit 1 -fi - -# Read the current brightness value from the file -current_volume=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2 * 100}') - -# Add the desired number to the current brightness -new_volume=$((current_volume + number_to_add)) - -# Enforce minimum and maximum brightness values -if (( new_volume < min_volume )); then - new_volume=$min_volume -elif (( new_volume > max_volume )); then - new_volume=$max_volume -fi - -wpctl set-volume @DEFAULT_AUDIO_SINK@ "${new_volume}%" - -eww update volumeValue="$new_volume" diff --git a/backup/eww/scripts/workspaces.sh b/backup/eww/scripts/workspaces.sh deleted file mode 100755 index 1c23029..0000000 --- a/backup/eww/scripts/workspaces.sh +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/bash - -# get initial focused workspace -focusedws=$(hyprctl -j monitors | jq -r '.[] | select(.focused == true) | .activeWorkspace.id') - -declare -A o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0) -declare -A monitormap -declare -A workspaces - -# handle workspace create/destroy -workspace_event() { - if (( $1 <= 10 )); then - o[$1]=$2 - while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - fi - if [ "$2" == "0" ]; then - unset "workspaces[$1]" - fi -} - -# handle monitor (dis)connects -monitor_event() { - while read -r k v; do monitormap["$k"]=$v; done < <(hyprctl -j monitors | jq -r '.[]|"\(.name) \(.id) "') -} - -# generate the json for eww -generate() { - - activeWorkspace=$(hyprctl -j monitors | jq -r '.[] | select(.focused == true) | .activeWorkspace.id') - - echo -n '[' - - for i in {1..10}; do - active=0 - if [[ $activeWorkspace == $i ]]; then - active=1 - fi - echo -n ''$([ $i -eq 1 ] || echo ,)'{"num":"'$i'","occupied":"'${o[$i]}'","active":"'$active'"}' - # echo -n ''$([ $i -eq 1 ] || echo ,) '{ "number": "'"$i"'", "activity": "'"$(status_activity $i)"'", "color": "'$(status "$i")'" }' - done - - # echo -n ',{"num":"'$focusedws'","clr":"'$(status "$focusedws")'"}' - - echo ']' -} - -# setup - -# add monitors -monitor_event - -# add workspaces -while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - -# get active workspace -activeWorkspace=$(hyprctl -j monitors | jq -r '.[] | select(.focused == true) | .activeWorkspace.id') - -# check occupied workspaces -for num in "${!workspaces[@]}"; do - o[$num]=1 -done -# generate initial widget -generate - -socat -u UNIX-CONNECT:/tmp/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | while read -r line; do - # echo "${#workspaces[@]} ${#o[@]}" - # echo $line - case ${line%>>*} in - "focusedmon") - focusedws=${line#*,} - generate - ;; - "createworkspace") - # workspace_event "${line#*>>}" 1 - o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0) - workspaces=() - # add workspaces - while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - # check occupied workspaces - for num in "${!workspaces[@]}"; do - o[$num]=1 - done - # focusedws=${line#*>>} - generate - ;; - "movewindow") - generate - ;; - "destroyworkspace") - # workspace_event "${line#*>>}" 0 - o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0) - workspaces=() - # add workspaces - while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - # check occupied workspaces - for num in "${!workspaces[@]}"; do - o[$num]=1 - done - generate - ;; - "monitor"*) - monitor_event - generate - ;; - "workspace") - - generate - ;; - esac - # echo $line - # generate -done - diff --git a/bar/eww.yuck b/bar/eww.yuck deleted file mode 100644 index 3222dfa..0000000 --- a/bar/eww.yuck +++ /dev/null @@ -1,10 +0,0 @@ -(defwindow example - :monitor 0 - :geometry (geometry :x "0%" - :y "20px" - :width "50%" - :height "50px" - :anchor "top center") - :stacking "fg" - "example content") - diff --git a/codesettings b/codesettings new file mode 100644 index 0000000..b8df0a0 --- /dev/null +++ b/codesettings @@ -0,0 +1 @@ +"explorer.confirmDelete": false \ No newline at end of file diff --git a/eww.scss b/eww/eww.scss similarity index 100% rename from eww.scss rename to eww/eww.scss diff --git a/eww.yuck b/eww/eww.yuck similarity index 100% rename from eww.yuck rename to eww/eww.yuck diff --git a/templates.yuck b/eww/templates.yuck similarity index 100% rename from templates.yuck rename to eww/templates.yuck diff --git a/variables.yuck b/eww/variables.yuck similarity index 100% rename from variables.yuck rename to eww/variables.yuck diff --git a/scripts/clients.sh b/scripts/clients.sh deleted file mode 100755 index a5f2458..0000000 --- a/scripts/clients.sh +++ /dev/null @@ -1,187 +0,0 @@ -#!/bin/bash - -ICON_THEME="ePapirus-Dark" - -declare -A occupiedWorkspaces -declare -A workspaceActiveOn -declare -A workspaces -PIDs=() -workspaces=() -A=() -image=() - - - -# get the monitors workspaces are active on and get workspaces that exist - -workspace_event() { - - unset workspaceActiveOn - unset occupiedWorkspaces - -# store the monitor id in workspaceActiveOn with the index of the active workspace - - while read -r m w; do - workspaceActiveOn[$w]=$m - done < <(hyprctl -j monitors | jq -r '.[]|"\(.id) \(.activeWorkspace.id)"') - -# set occupiedWorkspaces with the workspace as its index true if the index exists - - while read -r i; do - if (( $i > 0 )); then - occupiedWorkspaces[$i]=true - fi - done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id)"') - -} - - - -client_event() { - -unset clientOnWorkspace -unset PIDs -unset classes -unset icons - - classes=() - clientOnWorkspace=() - images=() - numberOnWorkspace=() - area=() - i=0 - - while read -r p w x y c; do - if [[ $c ]]; then - -# read PIDs of all clients in consecutive order - - PIDs[$i]="$p" - -# store class of process at index of its PID - - classes[$p]="$c" - -# store workspace process is on at index of its PID - - clientOnWorkspace[$p]="$w" - -# increment numberOnWorkspace by one to reflect amount of clients on it - - ((numberOnWorkspace[w]+=1)) - -# store area of the process at index of its PID - - area[$p]=$((x * y)) - -# get icon in a hacky way - - desktop=$(grep -l "StartupWMClass.*$c$" /usr/share/applications/*.desktop) - if [ -z $desktop ]; then - desktop=$(grep -Pl "Name\s*=\s*$c$" /usr/share/applications/*.desktop) - fi - if [ -z $desktop ]; then - desktop=$(ls /usr/share/applications | grep -l /usr/share/applications/${c}.desktop) - fi - if [ -z $desktop ]; then - process=$(ps -p ${p} -o comm=) - desktop=$(grep -Pl "$process" /usr/share/applications/*.desktop) - fi - if [ -z $desktop ]; then - desktop=$(grep -Pli "$c" /usr/share/applications/*.desktop) - fi - if [ -z $desktop ]; then - continue - fi - - image=$(awk -F'[[:space:]]*=[[:space:]]*' '/Icon[[:space:]]*=/{print $2}' $desktop) - icons[$p]="/usr/share/icons/Papirus-Dark/128x128/apps/${image}.svg" - ((i=$i+1)) - - fi - done < <(hyprctl clients -j | jq -r '.[]|"\(.pid) \(.workspace.id) \(.size[0]) \(.size[1]) \(.initialClass)"') - -# store json string of all client information at the index of the clients pid - - for ((i=0; i<${#PIDs[@]}; i++)); do - PID=${PIDs[$i]} - clientInfos[PID]='{"onWorkspace":"'${clientOnWorkspace[$PID]}'","pid":"'${PID}'","class":"'${classes[$PID]}'","mainOn":"''","icon":"'${icons[$PID]}'"}' - done - -} - - -# generate the json for eww -generate() { - - unset message - - message='[' - - for i in {1..9}; do - - message=$message''$([ $i -eq 1 ] || echo ,)'{"ID":"'$i'","occupied":"'${occupiedWorkspaces[$i]}'","activeID":"'${workspaceActiveOn[$i]}'","clients":[' - - firstClient=0 - - for ((j=0; j<${#PIDs[@]}; j++)); do - - PID=${PIDs[j]} - - if [[ $(echo ${clientInfos[$PID]} | jq '"\(.onWorkspace)"') == '"'${i}'"' ]]; then - message=$message''$([ $firstClient -eq 0 ] || echo ,)''${clientInfos[$PID]}'' - firstClient=1 - fi - - done - - message=$message']}' - done - - message="${message}]" - - echo $message -} - -# setup - - -# generate initial widget -workspace_event -client_event -generate - -socat -u UNIX-CONNECT:/tmp/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | while read -r line; do - case ${line%>>*} in - "workspace") - workspace_event - generate - ;; -# "createworkspace") -# workspace_event -# generate -# ;; -# "destroyworkspace") -# workspace_event -# generate -# ;; -# "moveworkspace") -# workspace_event -# generate -# ;; - "openwindow") - client_event - generate - ;; - "closewindow") - client_event - generate - ;; - "movewindow") - client_event - workspace_event - generate - ;; - esac -done - diff --git a/scripts/test/test b/scripts/test/test deleted file mode 100755 index 157dcc9..0000000 Binary files a/scripts/test/test and /dev/null differ diff --git a/scripts/test/test.cpp b/scripts/test/test.cpp deleted file mode 100644 index 117cb21..0000000 --- a/scripts/test/test.cpp +++ /dev/null @@ -1,43 +0,0 @@ -#include -#include -#include -#include - -namespace fs = std::filesystem; - -const std::string dir = "/usr/share/applications"; - -int main(int argc, char const *argv[]) -{ - for (const auto& entry : fs::directory_iterator(dir)) - { - if (entry.path().extension() == ".desktop") - { - std::ifstream file(entry.path()); - if (!file.is_open()) - { - std::cerr << "file not opened" << std::endl; - return 1; - } - - std::string output; - std::string line; - - while (std::getline(file, line)) - { - output += line + "\n"; - } - - - std::cout << output << std::endl; - - file.close(); - - } - - } - - - - return 0; -} diff --git a/scripts/test2.sh b/scripts/test2.sh deleted file mode 100755 index 67a2fb8..0000000 --- a/scripts/test2.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/bash - -PIDs=() -classes=() -clientOnWorkspace=() -images=() -numberOnWorkspace=() -area=() -i=0 - -while read -r p w x y c; do - if [[ $c ]]; then - - PIDs[$i]="$p" - classes[$p]="$c" - clientOnWorkspace[$p]="$w" - ((numberOnWorkspace[w]+=1)) - area[$p]=$((x * y)) - - - - desktop=$(grep -l "StartupWMClass.*$c$" /usr/share/applications/*.desktop) - echo $c - if [ -z $desktop ]; then - desktop=$(grep -Pl "Name\s*=\s*$c$" /usr/share/applications/*.desktop) - fi - if [ -z $desktop ]; then - desktop=$(ls /usr/share/applications | grep -l /usr/share/applications/${c}.desktop) - fi - if [ -z $desktop ]; then - process=$(ps -p ${p} -o comm=) - desktop=$(grep -Pl "$process" /usr/share/applications/*.desktop) - fi - if [ -z $desktop ]; then - desktop=$(grep -Pli "$c" /usr/share/applications/*.desktop) - fi - if [ -z $desktop ]; then - continue - fi - - images[$p]=$(awk -F'[[:space:]]*=[[:space:]]*' '/Icon[[:space:]]*=/{print $2}' $desktop) - ls /usr/share/icons/ePapirus-Dark/128x128/apps/${images[$p]}.svg - ((i=$i+1)) - - - - - - fi -done < <(hyprctl clients -j | jq -r '.[]|"\(.pid) \(.workspace.id) \(.size[0]) \(.size[1]) \(.initialClass)"') - -for ((i=0; i<${#PIDs[@]}; i++)); do - PID=${PIDs[$i]} - clientInfos[PID]='{"onWorkspace":"'${clientOnWorkspace[$PID]}'","pid":"'${PID}'","class":"'${classes[$PID]}'","mainOn":"''","icon":"'${images[$PID]}'"}' - echo ${clientInfos[$PID]} -done - - -#for window in ${!windows[@]}; do -# echo -n "${window} " -# echo $(ps -p ${windows[$window]} -o comm=) -#done - -#test=$(ps -p ${windows[2]} -o comm=) -#$(feh /usr/share/icons/Papirus-Dark/128x128/apps/${test}.svg) \ No newline at end of file diff --git a/scripts/workspaces.sh b/scripts/workspaces.sh deleted file mode 100755 index 4e4a43b..0000000 --- a/scripts/workspaces.sh +++ /dev/null @@ -1,102 +0,0 @@ -#!/bin/bash - -# get initial focused workspace -focusedws=$(hyprctl -j monitors | jq -r '.[] | select(.focused == true) | .activeWorkspace.id') - -declare -A o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0) -declare -A monitormap -declare -A workspaces - -# handle workspace create/destroy -workspace_event() { - if (( $1 <= 10 )); then - o[$1]=$2 - while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - fi - if [ "$2" == "0" ]; then - unset "workspaces[$1]" - fi -} - -# handle monitor (dis)connects -monitor_event() { - while read -r k v; do monitormap["$k"]=$v; done < <(hyprctl -j monitors | jq -r '.[]|"\(.name) \(.id) "') -} - -# generate the json for eww -generate() { - - unset activeWorkspaces - - while read -r i w; do - activeWorkspaces[$w]=$i - done < <(hyprctl -j monitors | jq -r '.[]|"\(.id) \(.activeWorkspace.id)"') - - echo -n '[' - - for i in {1..10}; do - echo -n ''$([ $i -eq 1 ] || echo ,)'{"ID":"'$i'","occupied":"'${o[$i]}'","activeID":"'${activeWorkspaces[$i]}'"}' - done - - echo ']' -} - -# setup - -# add monitors -monitor_event - -# add workspaces -while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - -# get active workspace -activeWorkspace=$(hyprctl -j monitors | jq -r '.[] | select(.focused == true) | .activeWorkspace.id') - -# check occupied workspaces -for num in "${!workspaces[@]}"; do - o[$num]=1 -done -# generate initial widget -generate - -socat -u UNIX-CONNECT:/tmp/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | while read -r line; do - case ${line%>>*} in - "createworkspace") - o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0) - workspaces=() - # add workspaces - while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - # check occupied workspaces - for num in "${!workspaces[@]}"; do - o[$num]=1 - done - # focusedws=${line#*>>} - generate - ;; - "movewindow") - generate - ;; - "moveworkspace") - generate - ;; - "destroyworkspace") - o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0) - workspaces=() - # add workspaces - while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jq -r '.[]|"\(.id) \(.monitor)"') - # check occupied workspaces - for num in "${!workspaces[@]}"; do - o[$num]=1 - done - generate - ;; - "monitor"*) - monitor_event - generate - ;; - "workspace") - generate - ;; - esac -done - diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/tempdir/hyprland_workspace_json/Cargo.lock b/tempdir/hyprland_workspace_json/Cargo.lock new file mode 100644 index 0000000..80d7410 --- /dev/null +++ b/tempdir/hyprland_workspace_json/Cargo.lock @@ -0,0 +1,89 @@ +# 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 new file mode 100644 index 0000000..f3792d4 --- /dev/null +++ b/tempdir/hyprland_workspace_json/Cargo.toml @@ -0,0 +1,8 @@ +[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 new file mode 100644 index 0000000..d1b61bc --- /dev/null +++ b/tempdir/hyprland_workspace_json/src/main.rs @@ -0,0 +1,149 @@ +//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 new file mode 100644 index 0000000..9d2bba6 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/.rustc_info.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/backup/eww/backup/eww/bar/eww.scss b/tempdir/hyprland_workspace_json/target/debug/.cargo-lock similarity index 100% rename from backup/eww/backup/eww/bar/eww.scss rename to tempdir/hyprland_workspace_json/target/debug/.cargo-lock 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 new file mode 100644 index 0000000..28ecdec --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..e4e9c7a --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..d313bb6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/dep-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..7808541 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1989689ce4226823/output-bin-hyprland_workspace_json @@ -0,0 +1,3 @@ +{"$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 new file mode 100644 index 0000000..d313bb6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/dep-test-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..ac8bd67 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/output-test-bin-hyprland_workspace_json @@ -0,0 +1,6 @@ +{"$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/backup/eww/bar/eww.scss b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/test-bin-hyprland_workspace_json similarity index 100% rename from backup/eww/bar/eww.scss rename to tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/test-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..419083d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-1f0f5989c50010df/test-bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..12375e9 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..84e1b1f --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/dep-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..6abfc9c --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-225fb1b9a1ca3f56/output-bin-hyprland_workspace_json @@ -0,0 +1,4 @@ +{"$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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..33144d6 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/test-bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..2a56a2e --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2a5c815d35f97c6e/test-bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..737693b --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/test-bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..d7fd335 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-2cb24541a5c2f265/test-bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..ae6ce99 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..4720deb --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-404cebb99b2e2164/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..d313bb6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/dep-test-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..b332d98 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/output-test-bin-hyprland_workspace_json @@ -0,0 +1,5 @@ +{"$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 new file mode 100644 index 0000000..d769344 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/test-bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..d771b63 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-4a9142c15e2dfdba/test-bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..f8dc58a --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/test-bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..ab10112 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-69500c5eb3d6f739/test-bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..d313bb6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/dep-test-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..7808541 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/output-test-bin-hyprland_workspace_json @@ -0,0 +1,3 @@ +{"$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 new file mode 100644 index 0000000..016ea78 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/test-bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..30f53a0 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-9bb2b6eb590f4c27/test-bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..c1be234 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..403f494 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..d313bb6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/dep-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..b332d98 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-a8ee898681b65d59/output-bin-hyprland_workspace_json @@ -0,0 +1,5 @@ +{"$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 new file mode 100644 index 0000000..32473b7 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..69312d2 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-b317a514e13def75/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..be56395 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..24c55b7 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c788d44c8d70607c/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..7cc19ae --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..c7265f0 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/dep-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..e79735c --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-c8943f625767bdf1/output-bin-hyprland_workspace_json @@ -0,0 +1,13 @@ +{"$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 new file mode 100644 index 0000000..d313bb6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/dep-test-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..9a756a2 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/output-test-bin-hyprland_workspace_json @@ -0,0 +1,6 @@ +{"$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/bar/eww.scss b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/test-bin-hyprland_workspace_json similarity index 100% rename from bar/eww.scss rename to tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/test-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..5efb057 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-ccde81dba1e919bf/test-bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..ac4f5fa --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/test-bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..1a490b5 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-d8ded70767f45aef/test-bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..9d28517 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/bin-hyprland_workspace_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..4028714 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-dd93a3f8900c3135/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..ea95bad --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..d313bb6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/dep-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..9a756a2 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e63fb7f112babf73/output-bin-hyprland_workspace_json @@ -0,0 +1,6 @@ +{"$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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..6e35dee --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/bin-hyprland_workspace_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..d313bb6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/dep-bin-hyprland_workspace_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..ac8bd67 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/hyprland_workspace_json-e7d77d8a1c374f61/output-bin-hyprland_workspace_json @@ -0,0 +1,6 @@ +{"$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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/dep-lib-itoa 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..8b3324e --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/lib-itoa @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..c4091f8 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-84f6e0c4cc9a7efb/lib-itoa.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/dep-lib-itoa 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..30cf00a --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/lib-itoa @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..84e69e4 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/itoa-ec51ebc890013d88/lib-itoa.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/dep-lib-ryu 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..2b6acaf --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/lib-ryu @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..6a7cf59 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-23bbb938a6bdcc37/lib-ryu.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/dep-lib-ryu 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..046c708 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/lib-ryu @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..7a6501b --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/ryu-5a33a811a2310270/lib-ryu.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/dep-lib-serde 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..854e641 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/lib-serde @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..6c412c2 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-39cd906ed73a9a8e/lib-serde.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..3f7855b --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/build-script-build-script-build @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..c6f7ce8 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/build-script-build-script-build.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/dep-build-script-build-script-build 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-759b9073d4cadbe4/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/dep-lib-serde 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..f8a4b84 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/lib-serde @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..96cdb29 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-9f28ce1717d379a1/lib-serde.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/dep-lib-serde 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..cfd4510 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/lib-serde @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..41f877e --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-b557008cfb395ff1/lib-serde.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..0731352 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d61c7867945224c3/run-build-script-build-script-build @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..cc38c7f --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d61c7867945224c3/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..713d43c --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/build-script-build-script-build @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..02a1345 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/build-script-build-script-build.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/dep-build-script-build-script-build 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-d689b76c6e6dbfc6/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..eae7303 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-f9144fb9fcbfa93c/run-build-script-build-script-build @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..54d7e45 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde-f9144fb9fcbfa93c/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/dep-lib-serde_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..c555c6d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/lib-serde_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..1a0d7da --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-73d86e7685791abe/lib-serde_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/dep-lib-serde_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..371ea36 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/lib-serde_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..b92c675 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-92539b64353b3b5c/lib-serde_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/dep-lib-serde_json 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..5e2f78b --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/lib-serde_json @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..f312ec2 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-a6c6408929de43e3/lib-serde_json.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..2fe0cd5 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/build-script-build-script-build @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..96a7d6e --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/build-script-build-script-build.json @@ -0,0 +1 @@ +{"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 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/dep-build-script-build-script-build 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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-c5e87bad76cce0eb/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..10ff008 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-e97b75c2f974121b/run-build-script-build-script-build @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..7fb7f00 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/.fingerprint/serde_json-e97b75c2f974121b/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"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 new file mode 100755 index 0000000..adbce68 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build-script-build 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 new file mode 100755 index 0000000..adbce68 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4 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 new file mode 100644 index 0000000..0225c6c --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde-759b9073d4cadbe4/build_script_build-759b9073d4cadbe4.d @@ -0,0 +1,5 @@ +/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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/output @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..83c1b57 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde-d61c7867945224c3/root-output @@ -0,0 +1 @@ +/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 new file mode 100644 index 0000000..e69de29 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 new file mode 100755 index 0000000..e67ee74 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build-script-build 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 new file mode 100755 index 0000000..e67ee74 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6 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 new file mode 100644 index 0000000..09b4369 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde-d689b76c6e6dbfc6/build_script_build-d689b76c6e6dbfc6.d @@ -0,0 +1,5 @@ +/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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/output @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..6990eaa --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde-f9144fb9fcbfa93c/root-output @@ -0,0 +1 @@ +/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 new file mode 100644 index 0000000..e69de29 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 new file mode 100755 index 0000000..2b752eb Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build-script-build 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 new file mode 100755 index 0000000..2b752eb Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb 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 new file mode 100644 index 0000000..4ab313c --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-c5e87bad76cce0eb/build_script_build-c5e87bad76cce0eb.d @@ -0,0 +1,5 @@ +/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 new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/invoked.timestamp @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..97295a0 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/output @@ -0,0 +1,2 @@ +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 new file mode 100644 index 0000000..ab36845 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/build/serde_json-e97b75c2f974121b/root-output @@ -0,0 +1 @@ +/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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..6a0ffc3 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1989689ce4226823.d @@ -0,0 +1,9 @@ +/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 new file mode 100644 index 0000000..6bbc36b --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-1f0f5989c50010df.d @@ -0,0 +1,9 @@ +/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 new file mode 100755 index 0000000..bd90c7b Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56 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 new file mode 100644 index 0000000..db292a3 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-225fb1b9a1ca3f56.d @@ -0,0 +1,5 @@ +/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 new file mode 100644 index 0000000..eb042f4 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-4a9142c15e2dfdba.d @@ -0,0 +1,9 @@ +/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 new file mode 100644 index 0000000..630fbe1 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-9bb2b6eb590f4c27.d @@ -0,0 +1,9 @@ +/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 new file mode 100644 index 0000000..83cc54e --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-a8ee898681b65d59.d @@ -0,0 +1,9 @@ +/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 new file mode 100755 index 0000000..05e05c4 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1 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 new file mode 100644 index 0000000..9136f1d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-c8943f625767bdf1.d @@ -0,0 +1,5 @@ +/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 new file mode 100644 index 0000000..df188a9 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-ccde81dba1e919bf.d @@ -0,0 +1,9 @@ +/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 new file mode 100644 index 0000000..f192ea6 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e63fb7f112babf73.d @@ -0,0 +1,9 @@ +/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 new file mode 100644 index 0000000..0ba7aaf --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/hyprland_workspace_json-e7d77d8a1c374f61.d @@ -0,0 +1,9 @@ +/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 new file mode 100644 index 0000000..7309c16 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/itoa-84f6e0c4cc9a7efb.d @@ -0,0 +1,6 @@ +/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 new file mode 100644 index 0000000..92e17ee --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/itoa-ec51ebc890013d88.d @@ -0,0 +1,8 @@ +/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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..e69de29 diff --git a/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-84f6e0c4cc9a7efb.rmeta b/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-84f6e0c4cc9a7efb.rmeta new file mode 100644 index 0000000..8bb4d35 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-84f6e0c4cc9a7efb.rmeta 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 new file mode 100644 index 0000000..a9b0079 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rlib 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 new file mode 100644 index 0000000..7ff94d7 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libitoa-ec51ebc890013d88.rmeta 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 new file mode 100644 index 0000000..4c0c68f Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libryu-23bbb938a6bdcc37.rmeta 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 new file mode 100644 index 0000000..d87f7ba Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rlib 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 new file mode 100644 index 0000000..b4babb3 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libryu-5a33a811a2310270.rmeta 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 new file mode 100644 index 0000000..2b226e0 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rlib 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 new file mode 100644 index 0000000..ac31fde Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libserde-39cd906ed73a9a8e.rmeta 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 new file mode 100644 index 0000000..aeba883 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libserde-9f28ce1717d379a1.rmeta 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 new file mode 100644 index 0000000..da35b9d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libserde-b557008cfb395ff1.rmeta 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 new file mode 100644 index 0000000..f70f6fe Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-73d86e7685791abe.rmeta 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 new file mode 100644 index 0000000..ff7e987 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-92539b64353b3b5c.rmeta 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 new file mode 100644 index 0000000..c21a1c8 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rlib 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 new file mode 100644 index 0000000..e9aa91c Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/deps/libserde_json-a6c6408929de43e3.rmeta 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 new file mode 100644 index 0000000..80ac2dc --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/ryu-23bbb938a6bdcc37.d @@ -0,0 +1,16 @@ +/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 new file mode 100644 index 0000000..e5d4505 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/ryu-5a33a811a2310270.d @@ -0,0 +1,18 @@ +/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 new file mode 100644 index 0000000..0855948 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/serde-39cd906ed73a9a8e.d @@ -0,0 +1,24 @@ +/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 new file mode 100644 index 0000000..db762fb --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/serde-9f28ce1717d379a1.d @@ -0,0 +1,22 @@ +/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 new file mode 100644 index 0000000..b98f9ec --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/serde-b557008cfb395ff1.d @@ -0,0 +1,22 @@ +/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 new file mode 100644 index 0000000..a18989d --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-73d86e7685791abe.d @@ -0,0 +1,20 @@ +/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 new file mode 100644 index 0000000..4bbb8d3 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-92539b64353b3b5c.d @@ -0,0 +1,20 @@ +/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 new file mode 100644 index 0000000..bee5453 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/deps/serde_json-a6c6408929de43e3.d @@ -0,0 +1,22 @@ +/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 new file mode 100755 index 0000000..05e05c4 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/hyprland_workspace_json 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 new file mode 100644 index 0000000..b9da502 --- /dev/null +++ b/tempdir/hyprland_workspace_json/target/debug/hyprland_workspace_json.d @@ -0,0 +1 @@ +/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 new file mode 100644 index 0000000..0f6ab81 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/2ipgdeij5eky4jin.o 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 new file mode 100644 index 0000000..5037b16 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/2xhqwbbhfen4mow0.o 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 new file mode 100644 index 0000000..318f030 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/3e5x8knc7umgnlbl.o 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 new file mode 100644 index 0000000..1ede318 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/3fco93rzjd4i51ht.o 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 new file mode 100644 index 0000000..c452ee1 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/4ghwol55wxf7plf5.o 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 new file mode 100644 index 0000000..9b26f3e Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/5dvuosdvw9u51q03.o 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 new file mode 100644 index 0000000..3f88dc9 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/dep-graph.bin 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 new file mode 100644 index 0000000..a3badc7 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/query-cache.bin 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 new file mode 100644 index 0000000..d0f5081 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-15zwm7yzmx4z7/s-gvo7rksk96-1f8kl57-8880m20yn083ir7qj9rtxsuow/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..2d647c6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/dep-graph.bin 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 new file mode 100644 index 0000000..6549781 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-19hznbsijompc/s-gvrgo0l7ep-1ksu3w5-7j18drnzi9uklsj3i2utboekq/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..a6c81d6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/dep-graph.bin 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 new file mode 100644 index 0000000..be45ee0 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo7wldj7k-snphvy-3ii74i2s3ap11rbd4q2o0sul7/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..a6c81d6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/dep-graph.bin 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 new file mode 100644 index 0000000..46594fb Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/dep-graph.part.bin 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 new file mode 100644 index 0000000..be45ee0 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8avjyja-s3r9ju-working/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..a6c81d6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/dep-graph.bin 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 new file mode 100644 index 0000000..13e5fb1 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/dep-graph.part.bin 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 new file mode 100644 index 0000000..be45ee0 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1c4pk1rgqkkrb/s-gvo8axzve6-kca1a5-working/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..f020f52 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/dep-graph.bin 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 new file mode 100644 index 0000000..5bcd76c Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo7wldizu-1k7vusm-cz7zqd1nkmt8fzciot2zcjsn/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..f020f52 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/dep-graph.bin 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 new file mode 100644 index 0000000..f8c1b87 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/dep-graph.part.bin 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 new file mode 100644 index 0000000..5bcd76c Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8avjyeq-356cux-working/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..f020f52 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/dep-graph.bin 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 new file mode 100644 index 0000000..3ec8026 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/dep-graph.part.bin 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 new file mode 100644 index 0000000..5bcd76c Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-1zx6mu775mfn/s-gvo8axzxid-1apf3as-working/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..ad65486 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/dep-graph.bin 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 new file mode 100644 index 0000000..9bc5bdb Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo5xzxb3u-1y65bnc-27v13uyv3ig33p8hkxh93i88l/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..ad65486 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/dep-graph.bin 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 new file mode 100644 index 0000000..cc40ca1 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/dep-graph.part.bin 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 new file mode 100644 index 0000000..9bc5bdb Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-33kb7jn6tz48i/s-gvo7tqae27-1i5po3k-working/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..6977f34 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/11hhicogi6poj9yv.o 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 new file mode 100644 index 0000000..b27748f Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/12guotxfrz5ary81.o 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 new file mode 100644 index 0000000..3f229d7 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/15hej8i6s2ofmper.o 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 new file mode 100644 index 0000000..3f04eee Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/19zp3ng88sno5ews.o 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 new file mode 100644 index 0000000..e7f16ff Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1e45lgyn6u3b7xqp.o 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 new file mode 100644 index 0000000..3ba2123 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1g4hfv7e71mgwky8.o 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 new file mode 100644 index 0000000..0c2db26 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1iiupy0etk0r0vje.o 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 new file mode 100644 index 0000000..fbfe8d8 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1jvl8zfsflg4bv91.o 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 new file mode 100644 index 0000000..47be246 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1m1y0wc4be1ysvap.o 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 new file mode 100644 index 0000000..7a7b230 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1mrwcv0n1jyaun8d.o 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 new file mode 100644 index 0000000..d701aea Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1n22yto7crgi9j69.o 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 new file mode 100644 index 0000000..43eb4e8 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1sxf6r331lk3clh9.o 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 new file mode 100644 index 0000000..64863c9 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1v49utlvq8x66zi9.o 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 new file mode 100644 index 0000000..8419636 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1xgc0heiusqnwk3h.o 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 new file mode 100644 index 0000000..7a310f9 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/1y0xfq7mooeodl3p.o 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 new file mode 100644 index 0000000..8e8751e Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/21q860qn4batktp3.o 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 new file mode 100644 index 0000000..ef4d384 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2259srjaxz4m3yon.o 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 new file mode 100644 index 0000000..c40c7ce Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/22jz9h6huviyblnl.o 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 new file mode 100644 index 0000000..cbb24ea Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/258dfp0en2shb31f.o 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 new file mode 100644 index 0000000..986bafe Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2fjqfot7nwie0apv.o 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 new file mode 100644 index 0000000..844c32a Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2iy0gsmw5kt2ygn.o 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 new file mode 100644 index 0000000..8d09336 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2rpq3nt6w3ow8zgq.o 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 new file mode 100644 index 0000000..bba3b41 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2s0xm5n072n9zagq.o 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 new file mode 100644 index 0000000..7bb20cf Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2utw136ja51nr5k4.o 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 new file mode 100644 index 0000000..4cc6298 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2vs1m4id0srt8i35.o 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 new file mode 100644 index 0000000..b93dd24 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/2w620wma9dhymyz9.o 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 new file mode 100644 index 0000000..c7a1cc8 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/33vhdlrknb7hn83p.o 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 new file mode 100644 index 0000000..c0ef869 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/38hrm2pal8ltwd8a.o 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 new file mode 100644 index 0000000..168bcc4 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3bn28p2ya091nkgg.o 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 new file mode 100644 index 0000000..f757648 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3eyqnaxpm95keeps.o 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 new file mode 100644 index 0000000..2eff422 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3fwr0ges1wig263t.o 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 new file mode 100644 index 0000000..835f894 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3g3r8h53o9rvljmi.o 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 new file mode 100644 index 0000000..a9e091d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3udm87t2p4dlij3e.o 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 new file mode 100644 index 0000000..79e21aa Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3vf63u1uazuf3m92.o 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 new file mode 100644 index 0000000..050c221 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3xhznf0ci3ncfefm.o 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 new file mode 100644 index 0000000..89bc564 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3z1v6r7bxm5l1a7b.o 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 new file mode 100644 index 0000000..517b861 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/3zjuyed5oxmc90sf.o 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 new file mode 100644 index 0000000..afd5d93 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/43hnpn5i6rnus3kk.o 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 new file mode 100644 index 0000000..afc3d74 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/44heagcz20juunm6.o 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 new file mode 100644 index 0000000..388168a Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/44iwl1vh08pz0e08.o 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 new file mode 100644 index 0000000..86d6efb Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/47voydpsaenpl521.o 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 new file mode 100644 index 0000000..d483617 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/48j70gdrfemrf725.o 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 new file mode 100644 index 0000000..1d99300 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4benea7od19ntyge.o 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 new file mode 100644 index 0000000..430f393 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4dc4dnkdq01b9avp.o 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 new file mode 100644 index 0000000..8a48261 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4dsovd5isl0e8sm0.o 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 new file mode 100644 index 0000000..89d943a Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4fahqmo5fr91cv98.o 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 new file mode 100644 index 0000000..bd1475e Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4hsvhe87s40kdo3i.o 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 new file mode 100644 index 0000000..b06da3e Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4js8ugcfx21h3tpv.o 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 new file mode 100644 index 0000000..61b15e4 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4jtkqtyg7j2zh0m0.o 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 new file mode 100644 index 0000000..176c0d4 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4o9inbzvrri3ispt.o 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 new file mode 100644 index 0000000..8a083f9 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4s4n0tc4v098wbxa.o 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 new file mode 100644 index 0000000..01f49ef Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/4xs75o32nw9vwdyy.o 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 new file mode 100644 index 0000000..b25d766 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/50btmk8j5s5hyj11.o 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 new file mode 100644 index 0000000..9d18259 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5696j7gjldm83u9k.o 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 new file mode 100644 index 0000000..45dc4f5 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/57qw22pe7lq8cwgu.o 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 new file mode 100644 index 0000000..705d720 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/57uzi23d4a7etmya.o 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 new file mode 100644 index 0000000..238567e Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5dbkije9wnmoci2p.o 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 new file mode 100644 index 0000000..ef2cc55 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5e345vj65csibyea.o 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 new file mode 100644 index 0000000..48efab7 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/5f1cfebsf56my08u.o 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 new file mode 100644 index 0000000..90297db Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/bg6j6fr5y6191zb.o 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 new file mode 100644 index 0000000..b1c1036 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/cftvgqx0oy827fa.o 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 new file mode 100644 index 0000000..62f849d Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/dep-graph.bin 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 new file mode 100644 index 0000000..60d885b Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/icpg4tvo2dgfvoz.o 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 new file mode 100644 index 0000000..a7d6099 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/iy4qwgjm9j1fv1g.o 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 new file mode 100644 index 0000000..887f4fe Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/kgsis0na8g9et3n.o 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 new file mode 100644 index 0000000..ba72b30 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/mh7hqqt6c2wno0k.o 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 new file mode 100644 index 0000000..ae001c2 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/query-cache.bin 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 new file mode 100644 index 0000000..579bf08 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/s1qsphcpvdmi3qc.o 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 new file mode 100644 index 0000000..69952f4 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/work-products.bin 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 new file mode 100644 index 0000000..0b027fd Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3hzgo08dyla3/s-gvqh3721ru-o0np00-5hbo0z1ntyzrd0whqvszd5poy/y6wrz69u9qosdv3.o 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..eaf9812 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/dep-graph.bin 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 new file mode 100644 index 0000000..db0c493 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo5xzxbpq-iv8zk6-dw8yg6s42aohlf7yvpdiil9o4/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..eaf9812 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/dep-graph.bin 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 new file mode 100644 index 0000000..2ec9bcc Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/dep-graph.part.bin 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 new file mode 100644 index 0000000..db0c493 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-3op8et6i2fpnl/s-gvo7tqag4x-2b7gla-working/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..d26b063 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/dep-graph.bin 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 new file mode 100644 index 0000000..7900712 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-q8ckxd17z2va/s-gvo6tvu4v3-cscoh3-cq93a0d6h47u1bphzhebxzhgs/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..dbbf1d8 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/dep-graph.bin 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 new file mode 100644 index 0000000..4612584 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-stnp69uy8snt/s-gvrgo0l5jo-1ht86bs-dctk7bxa8zyvm63l3tebf8idf/work-products.bin 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 new file mode 100644 index 0000000..e69de29 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 new file mode 100644 index 0000000..84741b8 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/dep-graph.bin 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 new file mode 100644 index 0000000..d69f6e5 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/query-cache.bin 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 new file mode 100644 index 0000000..d9b1ec6 Binary files /dev/null and b/tempdir/hyprland_workspace_json/target/debug/incremental/hyprland_workspace_json-tfhww6fajdat/s-gvo6tvu4v4-j1toub-70r1o3cp3gu1i7yxfspuicjk0/work-products.bin 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 new file mode 100644 index 0000000..e69de29 diff --git a/tempdir/rusttest/.gitignore b/tempdir/rusttest/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/tempdir/rusttest/.gitignore @@ -0,0 +1 @@ +/target diff --git a/tempdir/rusttest/Cargo.lock b/tempdir/rusttest/Cargo.lock new file mode 100644 index 0000000..fa8f3fd --- /dev/null +++ b/tempdir/rusttest/Cargo.lock @@ -0,0 +1,7 @@ +# 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 new file mode 100644 index 0000000..dd2efc3 --- /dev/null +++ b/tempdir/rusttest/Cargo.toml @@ -0,0 +1,8 @@ +[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] diff --git a/tempdir/rusttest/src/main.rs b/tempdir/rusttest/src/main.rs new file mode 100644 index 0000000..472908c --- /dev/null +++ b/tempdir/rusttest/src/main.rs @@ -0,0 +1,64 @@ +use std::fs; +use std::time::Instant; + +const PATH: &str = "/usr/share/applications/"; + +fn read(path: &str) -> std::io::Result<()> { + let files = fs::read_dir(path)?; + for file in files { + let file = file?; + let path = file.path(); + let extension = path.extension().expect("error"); + + if extension != "desktop" { + continue; + } + + let mut class: &str = ""; + let mut name: &str = ""; + let mut icon: &str = ""; + + let file = fs::read_to_string(path)?; + + for line in file.lines() { + match line { + line if line.starts_with("StartupWMClass") => { + class = match line.split_once('=') { + Some((_, class)) => class, + None => "", + } + } + line if line.starts_with("Name") => { + name = match line.split_once('=') { + Some((_, name)) => name, + None => "", + } + } + line if line.starts_with("Icon") => { + icon = match line.split_once('=') { + Some((_, icon)) => icon, + None => "", + } + } + _ => (), + } + } + println!("Class: {class}, Name: {name}, Icon: {icon}"); + } + + Ok(()) +} + +fn main() { + let start_time = Instant::now(); + read(PATH).expect("error"); + let end_time = Instant::now(); + + let time = end_time - start_time; + + println!( + "Time taken: {}.{:03}s", + time.as_secs(), + time.subsec_millis() + ); +}