From 6ea66ce1a6136d2b2c484bf75b73928c4b08ab5c Mon Sep 17 00:00:00 2001 From: Martino Ferrari Date: Tue, 28 Apr 2026 14:18:01 +0200 Subject: [PATCH] added new allon/alloff feature --- firmware/main/main.c | 240 +++++++------ hmi_gui/src/main.rs | 101 ++++-- hmi_gui/target/flycheck0/stderr | 22 +- hmi_gui/target/flycheck0/stdout | 318 +++++++++--------- .../release/esp32p4-waveform-gui.exe | Bin 10094231 -> 10095271 bytes 5 files changed, 376 insertions(+), 305 deletions(-) diff --git a/firmware/main/main.c b/firmware/main/main.c index 4eed683..8790f55 100644 --- a/firmware/main/main.c +++ b/firmware/main/main.c @@ -1,145 +1,161 @@ -#include -#include -#include -#include "freertos/FreeRTOS.h" -#include "freertos/task.h" +#include "driver/gpio.h" #include "driver/ledc.h" -#include "esp_err.h" #include "driver/usb_serial_jtag.h" +#include "esp_err.h" #include "esp_vfs_dev.h" #include "esp_vfs_usb_serial_jtag.h" -#include "driver/gpio.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include +#include +#include #define PIN_A 33 #define PIN_B 32 #define LEDC_MODE LEDC_LOW_SPEED_MODE #define TIMER LEDC_TIMER_0 #define BIT_RES LEDC_TIMER_10_BIT -#define DUTY_50 460 +#define DUTY_50 512 #define PHASE_180 512 typedef enum { - ST_DISABLED, - STATE_MANUAL_ON, // A=0, B=1 - STATE_MANUAL_OFF, // A=1, B=0 - ST_MODULATING + ST_DISABLED, + STATE_ALL_ON, + STATE_ALL_OFF, + STATE_MANUAL_ON, // A=0, B=1 + STATE_MANUAL_OFF, // A=1, B=0 + ST_MODULATING } system_state_t; static system_state_t current_state = ST_DISABLED; static uint32_t current_freq = 100; void apply_hardware() { - // Always stop LEDC before changing mode or GPIO state - ledc_stop(LEDC_MODE, LEDC_CHANNEL_0, 0); - ledc_stop(LEDC_MODE, LEDC_CHANNEL_1, 0); - - // Ensure GPIOs are in a clean state - gpio_reset_pin(PIN_A); - gpio_reset_pin(PIN_B); - gpio_set_direction(PIN_A, GPIO_MODE_OUTPUT); - gpio_set_direction(PIN_B, GPIO_MODE_OUTPUT); + // Always stop LEDC before changing mode or GPIO state + ledc_stop(LEDC_MODE, LEDC_CHANNEL_0, 0); + ledc_stop(LEDC_MODE, LEDC_CHANNEL_1, 0); - switch (current_state) { - case ST_DISABLED: - gpio_set_level(PIN_A, 0); - gpio_set_level(PIN_B, 0); - break; + // Ensure GPIOs are in a clean state + gpio_reset_pin(PIN_A); + gpio_reset_pin(PIN_B); + gpio_set_direction(PIN_A, GPIO_MODE_OUTPUT); + gpio_set_direction(PIN_B, GPIO_MODE_OUTPUT); - case STATE_MANUAL_ON: // A=0, B=1 - gpio_set_level(PIN_A, 0); - gpio_set_level(PIN_B, 1); - break; + switch (current_state) { + case ST_DISABLED: + gpio_set_level(PIN_A, 0); + gpio_set_level(PIN_B, 0); + break; - case STATE_MANUAL_OFF: // A=1, B=0 - gpio_set_level(PIN_A, 1); - gpio_set_level(PIN_B, 0); - break; + case STATE_ALL_ON: + gpio_set_level(PIN_A, 1); + gpio_set_level(PIN_B, 1); + break; - case ST_MODULATING: { - ledc_timer_config_t timer_conf = { - .speed_mode = LEDC_MODE, - .timer_num = TIMER, - .duty_resolution = BIT_RES, - .freq_hz = current_freq, - .clk_cfg = LEDC_AUTO_CLK - }; - ledc_timer_config(&timer_conf); + case STATE_ALL_OFF: + gpio_set_level(PIN_A, 0); + gpio_set_level(PIN_B, 0); + break; - ledc_channel_config_t chan_a = { - .speed_mode = LEDC_MODE, - .channel = LEDC_CHANNEL_0, - .timer_sel = TIMER, - .intr_type = LEDC_INTR_DISABLE, - .gpio_num = PIN_A, - .duty = DUTY_50, - .hpoint = 0 - }; - ledc_channel_config(&chan_a); + case STATE_MANUAL_ON: // A=0, B=1 + gpio_set_level(PIN_A, 0); + gpio_set_level(PIN_B, 1); + break; - ledc_channel_config_t chan_b = { - .speed_mode = LEDC_MODE, - .channel = LEDC_CHANNEL_1, - .timer_sel = TIMER, - .intr_type = LEDC_INTR_DISABLE, - .gpio_num = PIN_B, - .duty = DUTY_50, - .hpoint = PHASE_180 - }; - ledc_channel_config(&chan_b); - break; - } - } + case STATE_MANUAL_OFF: // A=1, B=0 + gpio_set_level(PIN_A, 1); + gpio_set_level(PIN_B, 0); + break; + + case ST_MODULATING: { + ledc_timer_config_t timer_conf = {.speed_mode = LEDC_MODE, + .timer_num = TIMER, + .duty_resolution = BIT_RES, + .freq_hz = current_freq, + .clk_cfg = LEDC_AUTO_CLK}; + ledc_timer_config(&timer_conf); + + ledc_channel_config_t chan_a = {.speed_mode = LEDC_MODE, + .channel = LEDC_CHANNEL_0, + .timer_sel = TIMER, + .intr_type = LEDC_INTR_DISABLE, + .gpio_num = PIN_A, + .duty = DUTY_50, + .hpoint = 0}; + ledc_channel_config(&chan_a); + + ledc_channel_config_t chan_b = {.speed_mode = LEDC_MODE, + .channel = LEDC_CHANNEL_1, + .timer_sel = TIMER, + .intr_type = LEDC_INTR_DISABLE, + .gpio_num = PIN_B, + .duty = DUTY_50, + .hpoint = PHASE_180}; + ledc_channel_config(&chan_b); + break; + } + } } void app_main(void) { - esp_vfs_dev_usb_serial_jtag_register(); - setvbuf(stdin, NULL, _IONBF, 0); - setvbuf(stdout, NULL, _IONBF, 0); + esp_vfs_dev_usb_serial_jtag_register(); + setvbuf(stdin, NULL, _IONBF, 0); + setvbuf(stdout, NULL, _IONBF, 0); - apply_hardware(); + apply_hardware(); - printf("\nWAVEGEN_READY\n"); + printf("\nWAVEGEN_READY\n"); - char line[64]; - while (1) { - if (fgets(line, sizeof(line), stdin)) { - line[strcspn(line, "\r\n")] = 0; - - if (strcmp(line, "ENABLE") == 0) { - current_state = STATE_MANUAL_OFF; // Default to OFF - apply_hardware(); - printf("ACK ENABLED\n"); - } else if (strcmp(line, "DISABLE") == 0) { - current_state = ST_DISABLED; - apply_hardware(); - printf("ACK DISABLED\n"); - } else if (strcmp(line, "ON") == 0) { - current_state = STATE_MANUAL_ON; - apply_hardware(); - printf("ACK ON\n"); - } else if (strcmp(line, "OFF") == 0) { - current_state = STATE_MANUAL_OFF; - apply_hardware(); - printf("ACK OFF\n"); - } else if (strcmp(line, "MOD_ON") == 0) { - current_state = ST_MODULATING; - apply_hardware(); - printf("ACK MOD_ON\n"); - } else if (strcmp(line, "MOD_OFF") == 0) { - current_state = STATE_MANUAL_OFF; - apply_hardware(); - printf("ACK MOD_OFF\n"); - } else if (strncmp(line, "F ", 2) == 0) { - uint32_t f = atoi(line + 2); - if (f >= 10 && f <= 5000) { - current_freq = f; - if (current_state == ST_MODULATING) apply_hardware(); - printf("ACK F %lu\n", f); - } else printf("ERR_FREQ\n"); - } else if (strcmp(line, "PING") == 0) { - printf("PONG\n"); - } - } - vTaskDelay(pdMS_TO_TICKS(10)); + char line[64]; + while (1) { + if (fgets(line, sizeof(line), stdin)) { + line[strcspn(line, "\r\n")] = 0; + + if (strcmp(line, "ENABLE") == 0) { + current_state = STATE_MANUAL_OFF; // Default to OFF + apply_hardware(); + printf("ACK ENABLED\n"); + } else if (strcmp(line, "DISABLE") == 0) { + current_state = ST_DISABLED; + apply_hardware(); + printf("ACK DISABLED\n"); + } else if (strcmp(line, "ON") == 0) { + current_state = STATE_MANUAL_ON; + apply_hardware(); + printf("ACK ON\n"); + } else if (strcmp(line, "ALL_ON") == 0){ + current_state = STATE_ALL_ON; + apply_hardware(); + printf("ACK ALL_ON\n"); + } else if (strcmp(line, "ALL_OFF") == 0){ + current_state = STATE_ALL_OFF; + apply_hardware(); + printf("ACK ALL_OFF\n"); + } else if (strcmp(line, "OFF") == 0) { + current_state = STATE_MANUAL_OFF; + apply_hardware(); + printf("ACK OFF\n"); + } else if (strcmp(line, "MOD_ON") == 0) { + current_state = ST_MODULATING; + apply_hardware(); + printf("ACK MOD_ON\n"); + } else if (strcmp(line, "MOD_OFF") == 0) { + current_state = STATE_MANUAL_OFF; + apply_hardware(); + printf("ACK MOD_OFF\n"); + } else if (strncmp(line, "F ", 2) == 0) { + uint32_t f = atoi(line + 2); + if (f >= 10 && f <= 5000) { + current_freq = f; + if (current_state == ST_MODULATING) + apply_hardware(); + printf("ACK F %lu\n", f); + } else + printf("ERR_FREQ\n"); + } else if (strcmp(line, "PING") == 0) { + printf("PONG\n"); + } } + vTaskDelay(pdMS_TO_TICKS(10)); + } } diff --git a/hmi_gui/src/main.rs b/hmi_gui/src/main.rs index d57c1c7..fa9b55f 100644 --- a/hmi_gui/src/main.rs +++ b/hmi_gui/src/main.rs @@ -1,10 +1,10 @@ #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] +use crossbeam_channel::{unbounded, Receiver, Sender}; use eframe::egui; use serialport::SerialPort; use std::io::{BufRead, BufReader, Write}; use std::time::Duration; -use crossbeam_channel::{unbounded, Receiver, Sender}; struct SerialManager { port: Option>, @@ -17,7 +17,7 @@ impl SerialManager { fn new() -> (Self, Sender, Receiver) { let (cmd_tx, cmd_rx) = unbounded::(); let (resp_tx, resp_rx) = unbounded::(); - + ( Self { port: None, @@ -44,7 +44,7 @@ struct WaveformApp { impl Default for WaveformApp { fn default() -> Self { let (manager, cmd_tx, resp_rx) = SerialManager::new(); - + // Spawn serial thread std::thread::spawn(move || { let mut m = manager; @@ -54,7 +54,8 @@ impl Default for WaveformApp { let port_name = cmd.replace("CONNECT:", ""); match serialport::new(&port_name, 115200) .timeout(Duration::from_millis(100)) - .open() { + .open() + { Ok(p) => { m.port = Some(p); m.is_connected = true; @@ -110,14 +111,16 @@ impl eframe::App for WaveformApp { self.connected = false; } self.log.push(resp); - if self.log.len() > 100 { self.log.remove(0); } + if self.log.len() > 100 { + self.log.remove(0); + } } egui::CentralPanel::default().show(ctx, |ui| { ui.vertical_centered(|ui| { ui.heading("ESP32-P4 Waveform Controller"); }); - + ui.add_space(10.0); // Connection Section @@ -129,7 +132,7 @@ impl eframe::App for WaveformApp { self.available_ports = ports.into_iter().map(|p| p.port_name).collect(); } } - + egui::ComboBox::from_id_source("port_select") .width(ui.available_width() - 120.0) .selected_text(&self.selected_port) @@ -138,13 +141,24 @@ impl eframe::App for WaveformApp { ui.selectable_value(&mut self.selected_port, port.clone(), port); } }); - + if !self.connected { - if ui.add_sized([80.0, 20.0], egui::Button::new("Connect")).clicked() && !self.selected_port.is_empty() { + if ui + .add_sized([80.0, 20.0], egui::Button::new("Connect")) + .clicked() + && !self.selected_port.is_empty() + { let _ = self.cmd_tx.send(format!("CONNECT:{}", self.selected_port)); } } else { - if ui.add_sized([80.0, 20.0], egui::Button::new("Disconnect").fill(egui::Color32::from_rgb(200, 50, 50))).clicked() { + if ui + .add_sized( + [80.0, 20.0], + egui::Button::new("Disconnect") + .fill(egui::Color32::from_rgb(200, 50, 50)), + ) + .clicked() + { let _ = self.cmd_tx.send("DISCONNECT".to_string()); } } @@ -161,14 +175,23 @@ impl eframe::App for WaveformApp { ui.set_enabled(self.connected); let spacing = ui.spacing().item_spacing.x; let btn_width = (ui.available_width() - (spacing * 2.0)) / 3.0; - - if ui.add_sized([btn_width, 30.0], egui::Button::new("✅ ENABLE Stage")).clicked() { + + if ui + .add_sized([btn_width, 30.0], egui::Button::new("✅ ENABLE Stage")) + .clicked() + { let _ = self.cmd_tx.send("ENABLE".to_string()); } - if ui.add_sized([btn_width, 30.0], egui::Button::new("❌ DISABLE Stage")).clicked() { + if ui + .add_sized([btn_width, 30.0], egui::Button::new("❌ DISABLE Stage")) + .clicked() + { let _ = self.cmd_tx.send("DISABLE".to_string()); } - if ui.add_sized([btn_width, 30.0], egui::Button::new("📡 PING")).clicked() { + if ui + .add_sized([btn_width, 30.0], egui::Button::new("📡 PING")) + .clicked() + { let _ = self.cmd_tx.send("PING".to_string()); } }); @@ -179,17 +202,37 @@ impl eframe::App for WaveformApp { // Manual Control ui.group(|ui| { ui.set_min_width(ui.available_width()); - ui.label(egui::RichText::new("Manual Control (Reversed: ON=A0/B1, OFF=A1/B0)").strong()); + ui.label( + egui::RichText::new("Manual Control (Reversed: ON=A0/B1, OFF=A1/B0)").strong(), + ); ui.horizontal(|ui| { ui.set_enabled(self.connected); let spacing = ui.spacing().item_spacing.x; - let btn_width = (ui.available_width() - spacing) / 2.0; - if ui.add_sized([btn_width, 40.0], egui::Button::new("ON")).clicked() { + let btn_width = (ui.available_width() - spacing) / 4.0; + if ui + .add_sized([btn_width, 25.0], egui::Button::new("ON")) + .clicked() + { let _ = self.cmd_tx.send("ON".to_string()); } - if ui.add_sized([btn_width, 40.0], egui::Button::new("OFF")).clicked() { + if ui + .add_sized([btn_width, 25.0], egui::Button::new("OFF")) + .clicked() + { let _ = self.cmd_tx.send("OFF".to_string()); } + if ui + .add_sized([btn_width, 25.0], egui::Button::new("ALL ON")) + .clicked() + { + let _ = self.cmd_tx.send("ALL_ON".to_string()); + } + if ui + .add_sized([btn_width, 25.0], egui::Button::new("ALL OFF")) + .clicked() + { + let _ = self.cmd_tx.send("ALL_OFF".to_string()); + } }); }); @@ -199,14 +242,16 @@ impl eframe::App for WaveformApp { ui.group(|ui| { ui.set_min_width(ui.available_width()); ui.label(egui::RichText::new("Modulation Control").strong()); - + ui.add_space(5.0); ui.horizontal(|ui| { ui.set_enabled(self.connected); - ui.add(egui::Slider::new(&mut self.freq, 10..=5000) - .text("Hz") - .trailing_fill(true)); - + ui.add( + egui::Slider::new(&mut self.freq, 10..=5000) + .text("Hz") + .trailing_fill(true), + ); + if ui.button("Set Frequency").clicked() { let _ = self.cmd_tx.send(format!("F {}", self.freq)); } @@ -217,10 +262,16 @@ impl eframe::App for WaveformApp { ui.set_enabled(self.connected); let spacing = ui.spacing().item_spacing.x; let btn_width = (ui.available_width() - spacing) / 2.0; - if ui.add_sized([btn_width, 30.0], egui::Button::new("▶ START MOD")).clicked() { + if ui + .add_sized([btn_width, 30.0], egui::Button::new("▶ START MOD")) + .clicked() + { let _ = self.cmd_tx.send("MOD_ON".to_string()); } - if ui.add_sized([btn_width, 30.0], egui::Button::new("⏹ STOP MOD")).clicked() { + if ui + .add_sized([btn_width, 30.0], egui::Button::new("⏹ STOP MOD")) + .clicked() + { let _ = self.cmd_tx.send("MOD_OFF".to_string()); } }); diff --git a/hmi_gui/target/flycheck0/stderr b/hmi_gui/target/flycheck0/stderr index 07196da..0c94c3f 100644 --- a/hmi_gui/target/flycheck0/stderr +++ b/hmi_gui/target/flycheck0/stderr @@ -1,12 +1,10 @@ - 0.196445111s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: stale: changed "/home/martino/Projects/apsbps/hmi_gui/src/main.rs" - 0.196473664s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: (vs) "/home/martino/Projects/apsbps/hmi_gui/target/debug/.fingerprint/esp32p4-waveform-gui-9e7b733ba0208723/dep-bin-esp32p4-waveform-gui" - 0.196478613s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: FileTime { seconds: 1772784305, nanos: 148911507 } < FileTime { seconds: 1772784403, nanos: 238869876 } - 0.196745281s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: fingerprint dirty for esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui)/Check { test: false }/TargetInner { name: "esp32p4-waveform-gui", doc: true, ..: with_path("/home/martino/Projects/apsbps/hmi_gui/src/main.rs", Edition2021) } - 0.196760639s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "/home/martino/Projects/apsbps/hmi_gui/target/debug/.fingerprint/esp32p4-waveform-gui-9e7b733ba0208723/dep-bin-esp32p4-waveform-gui", reference_mtime: FileTime { seconds: 1772784305, nanos: 148911507 }, stale: "/home/martino/Projects/apsbps/hmi_gui/src/main.rs", stale_mtime: FileTime { seconds: 1772784403, nanos: 238869876 } })) - 0.211949145s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: stale: changed "/home/martino/Projects/apsbps/hmi_gui/src/main.rs" - 0.211961738s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: (vs) "/home/martino/Projects/apsbps/hmi_gui/target/debug/.fingerprint/esp32p4-waveform-gui-32bee7e61c16136e/dep-test-bin-esp32p4-waveform-gui" - 0.211965996s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: FileTime { seconds: 1772784305, nanos: 148911507 } < FileTime { seconds: 1772784403, nanos: 238869876 } - 0.212011341s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: fingerprint dirty for esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui)/Check { test: true }/TargetInner { name: "esp32p4-waveform-gui", doc: true, ..: with_path("/home/martino/Projects/apsbps/hmi_gui/src/main.rs", Edition2021) } - 0.212023363s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "/home/martino/Projects/apsbps/hmi_gui/target/debug/.fingerprint/esp32p4-waveform-gui-32bee7e61c16136e/dep-test-bin-esp32p4-waveform-gui", reference_mtime: FileTime { seconds: 1772784305, nanos: 148911507 }, stale: "/home/martino/Projects/apsbps/hmi_gui/src/main.rs", stale_mtime: FileTime { seconds: 1772784403, nanos: 238869876 } })) - Checking esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) - Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.41s + 0.177648754s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: dependency on `build_script_build` is newer than we are 1777378521.541030177s > 1777378515.421184793s "/home/martino/Projects/apsbps/hmi_gui" + 0.177917600s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: fingerprint dirty for esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui)/Check { test: false }/TargetInner { name: "esp32p4-waveform-gui", doc: true, ..: with_path("/home/martino/Projects/apsbps/hmi_gui/src/main.rs", Edition2021) } + 0.177936886s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: dirty: UnitDependencyInfoChanged { old_name: "build_script_build", old_fingerprint: 5506010799102075718, new_name: "build_script_build", new_fingerprint: 11272122776165777049 } + 0.189969815s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="build-script-build"}: cargo::core::compiler::fingerprint: fingerprint dirty for esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui)/RunCustomBuild/TargetInner { ..: custom_build_target("build-script-build", "/home/martino/Projects/apsbps/hmi_gui/build.rs", Edition2021) } + 0.189987448s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="build-script-build"}: cargo::core::compiler::fingerprint: dirty: PrecalculatedComponentsChanged { old: "1777378521.316035836s (target/flycheck0/stderr)", new: "1777378526.705900787s (target/flycheck0/stderr)" } + 0.190700675s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: dependency on `build_script_build` is newer than we are 1777378521.541030177s > 1777378515.421184793s "/home/martino/Projects/apsbps/hmi_gui" + 0.190726523s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: fingerprint dirty for esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui)/Check { test: true }/TargetInner { name: "esp32p4-waveform-gui", doc: true, ..: with_path("/home/martino/Projects/apsbps/hmi_gui/src/main.rs", Edition2021) } + 0.190733766s INFO prepare_target{force=false package_id=esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) target="esp32p4-waveform-gui"}: cargo::core::compiler::fingerprint: dirty: UnitDependencyInfoChanged { old_name: "build_script_build", old_fingerprint: 5506010799102075718, new_name: "build_script_build", new_fingerprint: 11272122776165777049 } + Compiling esp32p4-waveform-gui v0.1.0 (/home/martino/Projects/apsbps/hmi_gui) + Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.32s diff --git a/hmi_gui/target/flycheck0/stdout b/hmi_gui/target/flycheck0/stdout index 7b66c20..d8d1176 100644 --- a/hmi_gui/target/flycheck0/stdout +++ b/hmi_gui/target/flycheck0/stdout @@ -18,13 +18,15 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","event","fs","net","pipe","process","shm","std","system","time"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/rustix-ed2b66dbe3bcc8a8/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linux_raw_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["auxvec","elf","errno","general","if_ether","ioctl","net","netlink","no_std","prctl","system","xdp"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblinux_raw_sys-715be57ec806522f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libloading","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblibloading-7410ea4697f0546e.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project_lite","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpin_project_lite-878c75225d54a5aa.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-sys@0.31.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.10/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.10/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","dlopen","egl","once_cell"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/wayland-sys-2a3f462db5916a20/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"shlex","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libshlex-b925a906878efe4a.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libshlex-b925a906878efe4a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"find_msvc_tools","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfind_msvc_tools-fade39207c1a2a08.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfind_msvc_tools-fade39207c1a2a08.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project_lite","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpin_project_lite-878c75225d54a5aa.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"version_check","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libversion_check-53da2be791d0fddd.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libversion_check-53da2be791d0fddd.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#downcast-rs@1.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/downcast-rs-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"downcast_rs","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/downcast-rs-1.2.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libdowncast_rs-73eab1361f6db159.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libslab-865e8bd6e4a67873.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scoped-tls-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scoped_tls","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scoped-tls-1.0.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libscoped_tls-2d946e944ab0e59d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libslab-865e8bd6e4a67873.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#downcast-rs@1.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/downcast-rs-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"downcast_rs","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/downcast-rs-1.2.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libdowncast_rs-73eab1361f6db159.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["result","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/serde_core-0f37286f728ffabd/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-client@0.31.13","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-client-0.31.13/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-client-0.31.13/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/wayland-client-7a823c0d0292d52d/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.40","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.40/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.40/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/zerocopy-a97275f3d3780f3a/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/crossbeam-utils-e7ed9920327b148e/build-script-build"],"executable":null,"fresh":true} @@ -32,318 +34,322 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_core-27c6e7b31c77fad5.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libmemchr-6da7c4f87f3506ff.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote","visit"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/syn-b9eb30ae2d309560/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libstable_deref_trait-c1d6929326a6b1a9.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"equivalent","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libequivalent-f98b8a501ccae7db.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libequivalent-f98b8a501ccae7db.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking@2.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking-2.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking-2.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libparking-832867e9b3339e1a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libhashbrown-f360952be3e3660b.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libhashbrown-f360952be3e3660b.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4","linked_libs":[],"linked_paths":[],"cfgs":["static_assertions","lower_upper_exp_for_non_zero","rustc_diagnostics","linux_raw_dep","linux_raw","linux_like","linux_kernel"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/rustix-90a1e655ac16ffd8/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-sys@0.31.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.10/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.10/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","dlopen","egl","once_cell"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/wayland-sys-2a3f462db5916a20/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dlib@0.5.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dlib-0.5.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dlib","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dlib-0.5.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libdlib-0de954b28a360855.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cc@1.2.56","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.56/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cc","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.56/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcc-b1f2f0dd5bc1401d.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcc-b1f2f0dd5bc1401d.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-sys@0.31.10","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/wayland-sys-246ac19a871ab964/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.39.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quick-xml-0.39.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quick_xml","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quick-xml-0.39.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libquick_xml-6564d9c5dd8f6620.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libquick_xml-6564d9c5dd8f6620.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-client@0.31.13","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/wayland-client-f12fb817a5329bfc/out"} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/crossbeam-utils-a1c021f199a74cf4/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/serde_core-51581c1704d17ce7/out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.40","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/zerocopy-cb43085cb6889a4d/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/crossbeam-utils-a1c021f199a74cf4/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerofrom_derive","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzerofrom_derive-b94aa378c8082813.so"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"yoke_derive","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libyoke_derive-f4b038fed809d3b5.so"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","linked_libs":[],"linked_paths":[],"cfgs":["syn_disable_nightly_tests"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/syn-8b9dbac020a2ad9a/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking@2.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking-2.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking-2.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libparking-832867e9b3339e1a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/typenum-02159cc3af3ecb58/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libhashbrown-f360952be3e3660b.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libhashbrown-f360952be3e3660b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"equivalent","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libequivalent-f98b8a501ccae7db.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libequivalent-f98b8a501ccae7db.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libstable_deref_trait-c1d6929326a6b1a9.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/generic-array-4d6be48c6456f7df/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytemuck_derive@1.10.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytemuck_derive-1.10.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"bytemuck_derive","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytemuck_derive-1.10.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libbytemuck_derive-8c62ad4d016147cf.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwinnow-27541cd163922ecb.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwinnow-27541cd163922ecb.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["result","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/serde_core-0f37286f728ffabd/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_datetime","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtoml_datetime-a22162321a338e2c.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtoml_datetime-a22162321a338e2c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libbitflags-a6d9708e8e1f38f8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwinnow-27541cd163922ecb.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwinnow-27541cd163922ecb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_io","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.32/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_io-5a7492e97846d1c5.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["once_cell","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtracing_core-df4d4f27520cbc3e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerovec_derive","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzerovec_derive-8fbb0fafc1072a2d.so"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tracing_attributes","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtracing_attributes-f9794372d777e5fb.so"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustix","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","event","fs","net","pipe","process","shm","std","system","time"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librustix-5aac1063b2c08ee0.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-sys@0.31.10","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/wayland-sys-246ac19a871ab964/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-sys@0.31.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","dlopen","egl","once_cell"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_sys-6c162dd49a0f409a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-backend@0.3.14","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.14/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.14/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client_system","dlopen"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/wayland-backend-7480b84e6c7650e5/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-scanner@0.31.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-scanner-0.31.9/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"wayland_scanner","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-scanner-0.31.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_scanner-ec1c9c236bdbb820.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.40","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.40/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.40/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzerocopy-c2244fd759ee6927.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_utils","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcrossbeam_utils-5da4fd44914f170a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.40","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.40/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.40/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzerocopy-c2244fd759ee6927.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerofrom","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzerofrom-1f82a7777245fb64.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/typenum-c6f19d3ab8ecbcbc/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libindexmap-4aabb35eb73973af.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libindexmap-4aabb35eb73973af.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote","visit"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsyn-ce631704f5527a61.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsyn-ce631704f5527a61.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/typenum-c6f19d3ab8ecbcbc/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytemuck@1.25.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytemuck-1.25.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytemuck","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytemuck-1.25.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aarch64_simd","bytemuck_derive","derive","extern_crate_alloc"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libbytemuck-fd0a4b6457a14890.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/serde_core-51581c1704d17ce7/out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","linked_libs":[],"linked_paths":[],"cfgs":["relaxed_coherence"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/generic-array-9a591590a03d1b5a/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"once_cell","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","race","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libonce_cell-a3f7ee1206c8a61d.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libonce_cell-a3f7ee1206c8a61d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","serde_derive","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/serde-f2949ac091c3d152/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["result","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde_core-6b6976e8516dc994.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["attributes","default","log","std","tracing-attributes"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtracing-cfc214b6ada5f3f3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.7.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.7.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.7.1/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/memoffset-5e595e9741c474e2/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"displaydoc","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libdisplaydoc-2d28f3ae80157a84.so"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_derive","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde_derive-282ba54c26b93707.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#io-lifetimes@1.0.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/io-lifetimes-1.0.11/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/io-lifetimes-1.0.11/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["close","hermit-abi","libc","windows-sys"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/io-lifetimes-8b3cb1c03f18f7a2/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener@2.5.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-2.5.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-2.5.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libevent_listener-f05ff66142569d66.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"displaydoc","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libdisplaydoc-2d28f3ae80157a84.so"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfastrand-3964bb6aea7e3a12.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener@2.5.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-2.5.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-2.5.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libevent_listener-f05ff66142569d66.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#io-lifetimes@1.0.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/io-lifetimes-1.0.11/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/io-lifetimes-1.0.11/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["close","hermit-abi","libc","windows-sys"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/io-lifetimes-8b3cb1c03f18f7a2/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#polling@2.8.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-2.8.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-2.8.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/polling-fd865d2416dc7acd/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf-literal","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaho_corasick-99e5b86cd1177f3b.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaho_corasick-99e5b86cd1177f3b.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-sys@0.31.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","dlopen","egl","once_cell"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_sys-6c162dd49a0f409a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-lite@2.6.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-2.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_lite","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-2.6.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_lite-e13f9333c5773c0c.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-backend@0.3.14","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/wayland-backend-38905d043f221c66/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#concurrent-queue@2.5.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/concurrent-queue-2.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"concurrent_queue","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/concurrent-queue-2.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libconcurrent_queue-cce73bba6a8c0eaa.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yoke","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","zerofrom"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libyoke-22e74a980e4f45b4.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtypenum-6520ab2f48bb9b9c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_edit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtoml_edit-f83c7f03ebfca561.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtoml_edit-f83c7f03ebfca561.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zvariant_utils@1.0.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_utils-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zvariant_utils","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_utils-1.0.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzvariant_utils-2b483f2072c156a9.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzvariant_utils-2b483f2072c156a9.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":["if_docsrs_then_no_serde_core"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/serde-30dfd4c93d7ae6f7/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["result","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde_core-6b6976e8516dc994.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#polling@3.11.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-3.11.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"polling","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-3.11.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpolling-03b570e740419c51.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.7.1","linked_libs":[],"linked_paths":[],"cfgs":["tuple_ty","allow_clippy","maybe_uninit","doctests","raw_ref_macros"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/memoffset-fabcb30f1bbc153d/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":["if_docsrs_then_no_serde_core"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/serde-30dfd4c93d7ae6f7/out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#io-lifetimes@1.0.11","linked_libs":[],"linked_paths":[],"cfgs":["io_safety_is_in_std","panic_in_const_fn"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/io-lifetimes-2a9d3a114922a54d/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-lite@2.6.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-2.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_lite","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-2.6.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_lite-e13f9333c5773c0c.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.7.1","linked_libs":[],"linked_paths":[],"cfgs":["tuple_ty","allow_clippy","maybe_uninit","doctests","raw_ref_macros"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/memoffset-fabcb30f1bbc153d/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf-literal","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaho_corasick-99e5b86cd1177f3b.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaho_corasick-99e5b86cd1177f3b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgetrandom-bcbb43f0420e1557.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#enumflags2_derive@0.7.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2_derive-0.7.12/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"enumflags2_derive","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2_derive-0.7.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libenumflags2_derive-fa33991b4bae7b73.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libbyteorder-edf2ebbeecf5e25b.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/khronos_api-3.1.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/khronos_api-3.1.0/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/khronos_api-11e3ff081b5da07b/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@1.9.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-1.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-1.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfastrand-2e0db6db553c1587.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_syntax-279549ccdb287ce2.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_syntax-279549ccdb287ce2.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#waker-fn@1.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/waker-fn-1.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"waker_fn","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/waker-fn-1.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwaker_fn-d197e00c89f16e48.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_aliases","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcfg_aliases-a9309fa4ca996c84.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcfg_aliases-a9309fa4ca996c84.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-task@4.7.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-task-4.7.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_task","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-task-4.7.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_task-a4c271845eac12ec.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atomic_waker","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libatomic_waker-95123ffabb4fa1fb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.37.28","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.37.28/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.37.28/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["fs","io-lifetimes","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/rustix-02330664fd0c8ac7/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-task@4.7.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-task-4.7.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_task","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-task-4.7.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_task-a4c271845eac12ec.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-backend@0.3.14","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_backend","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.14/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client_system","dlopen"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_backend-aa1014425cf71f6f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgeneric_array-af658a64f0059a6d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerovec","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","yoke"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzerovec-581e09cc61abc65e.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener@5.4.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["parking","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libevent_listener-af2a34faef7d1933.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-crate@1.3.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-crate-1.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro_crate","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-crate-1.3.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libproc_macro_crate-4f50a5ab1417a324.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libproc_macro_crate-4f50a5ab1417a324.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","serde_derive","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde-ee1a4c95318d1401.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-lite@1.13.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-1.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_lite","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-1.13.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","fastrand","futures-io","memchr","parking","std","waker-fn"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_lite-1078ba8edcc87973.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.7.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.7.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memoffset","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.7.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libmemoffset-bd2480d4c5d94d40.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librand_core-78cfc16991fc005a.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.37.28","linked_libs":[],"linked_paths":[],"cfgs":["linux_raw","asm","linux_like","linux_kernel"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/rustix-aa747b186c71e1e0/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#io-lifetimes@1.0.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/io-lifetimes-1.0.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"io_lifetimes","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/io-lifetimes-1.0.11/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["close","hermit-abi","libc","windows-sys"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libio_lifetimes-13236b9d301b0ecd.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-onepass","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_automata-0fd94a0a4602c4c8.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_automata-0fd94a0a4602c4c8.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#piper@0.2.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/piper-0.2.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"piper","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/piper-0.2.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","futures-io","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpiper-3e0ed94443bd4ac3.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/khronos_api-c7f6bac57a83cf0d/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-lock@2.8.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-2.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_lock","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-2.8.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_lock-c766f499ec3c60e7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/khronos_api-3.1.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/khronos_api-3.1.0/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/khronos_api-11e3ff081b5da07b/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#waker-fn@1.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/waker-fn-1.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"waker_fn","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/waker-fn-1.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwaker_fn-d197e00c89f16e48.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libbyteorder-edf2ebbeecf5e25b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_aliases","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcfg_aliases-a9309fa4ca996c84.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcfg_aliases-a9309fa4ca996c84.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_syntax-279549ccdb287ce2.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_syntax-279549ccdb287ce2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@1.9.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-1.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-1.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfastrand-2e0db6db553c1587.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ppv_lite86","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libppv_lite86-53fa665182700dc6.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#polling@2.8.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/polling-5575a545e9b25852/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-io@1.13.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-1.13.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-1.13.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/async-io-ebd57a1eeda96c99/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-backend@0.3.14","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_backend","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.14/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client_system","dlopen"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_backend-aa1014425cf71f6f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-crate@1.3.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-crate-1.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro_crate","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-crate-1.3.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libproc_macro_crate-4f50a5ab1417a324.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libproc_macro_crate-4f50a5ab1417a324.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener@5.4.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["parking","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libevent_listener-af2a34faef7d1933.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgeneric_array-af658a64f0059a6d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerovec","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","yoke"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzerovec-581e09cc61abc65e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","serde_derive","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde-ee1a4c95318d1401.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#piper@0.2.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/piper-0.2.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"piper","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/piper-0.2.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","futures-io","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpiper-3e0ed94443bd4ac3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-lite@1.13.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-1.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_lite","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-1.13.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","fastrand","futures-io","memchr","parking","std","waker-fn"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_lite-1078ba8edcc87973.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-onepass","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_automata-0fd94a0a4602c4c8.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_automata-0fd94a0a4602c4c8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.7.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.7.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memoffset","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.7.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libmemoffset-bd2480d4c5d94d40.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#io-lifetimes@1.0.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/io-lifetimes-1.0.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"io_lifetimes","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/io-lifetimes-1.0.11/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["close","hermit-abi","libc","windows-sys"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libio_lifetimes-13236b9d301b0ecd.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.37.28","linked_libs":[],"linked_paths":[],"cfgs":["linux_raw","asm","linux_like","linux_kernel"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/rustix-aa747b186c71e1e0/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librand_core-78cfc16991fc005a.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/khronos_api-c7f6bac57a83cf0d/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-lock@2.8.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-2.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_lock","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-2.8.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_lock-c766f499ec3c60e7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-fs@1.6.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-fs-1.6.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-fs-1.6.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/async-fs-e29c72ea5413ce30/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-io@1.13.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-1.13.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-1.13.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/async-io-ebd57a1eeda96c99/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"static_assertions","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libstatic_assertions-44b22fd9e26bd07f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.25.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.25.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ttf_parser","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.25.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["apple-layout","glyph-names","gvar-alloc","opentype-layout","std","variable-fonts"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libttf_parser-34cd4ee7567ff717.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","event","fs","libc-extra-traits","pipe","process","shm","std","system","thread","use-libc-auxv"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/rustix-8066971ec712d419/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/thiserror-343dbab2c4f05f63/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.25.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.25.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ttf_parser","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.25.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["apple-layout","glyph-names","gvar-alloc","opentype-layout","std","variable-fonts"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libttf_parser-34cd4ee7567ff717.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.3.8","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.3.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linux_raw_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.3.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["errno","general","ioctl","no_std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblinux_raw_sys-0cce915742f7a50c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/thiserror-343dbab2c4f05f63/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/getrandom-cc8697f7e7c92902/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#polling@2.8.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-2.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"polling","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-2.8.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpolling-8c3016444b23a25a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-client@0.31.13","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-client-0.31.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_client","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-client-0.31.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_client-3bd20c9dc812c881.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener-strategy@0.5.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-strategy-0.5.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener_strategy","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-strategy-0.5.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libevent_listener_strategy-f7d4ad8713c4f253.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zvariant_derive@3.15.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_derive-3.15.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zvariant_derive","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_derive-3.15.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzvariant_derive-e88e0733a55b1818.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_buffer","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libblock_buffer-7f7c9c43ca6358da.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcrypto_common-9968ffeb31c5f289.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#enumflags2@0.7.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2-0.7.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"enumflags2","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2-0.7.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libenumflags2-525709ac4abe4391.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/getrandom-cc8697f7e7c92902/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zvariant_derive@3.15.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_derive-3.15.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zvariant_derive","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_derive-3.15.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzvariant_derive-e88e0733a55b1818.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcrypto_common-9968ffeb31c5f289.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_buffer","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libblock_buffer-7f7c9c43ca6358da.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.37.28","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.37.28/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustix","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.37.28/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["fs","io-lifetimes","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librustix-c79bf7f4d205e725.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/khronos_api-3.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"khronos_api","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/khronos_api-3.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libkhronos_api-c032c30807b48858.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libkhronos_api-c032c30807b48858.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-io@1.13.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/async-io-596b363336f86962/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/getrandom-48827429e32c729c/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinystr","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtinystr-0b5a757238a9fdcd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#owned_ttf_parser@0.25.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/owned_ttf_parser-0.25.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"owned_ttf_parser","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/owned_ttf_parser-0.25.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["apple-layout","default","glyph-names","gvar-alloc","opentype-layout","std","variable-fonts"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libowned_ttf_parser-62fb9c5f41ba583e.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-fs@1.6.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/async-fs-cb8628adce4f7fe7/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.12.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","perf","perf-backtrack","perf-cache","perf-dfa","perf-inline","perf-literal","perf-onepass","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex-d9b88f54af5a9279.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex-d9b88f54af5a9279.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44","linked_libs":[],"linked_paths":[],"cfgs":["static_assertions","linux_raw","linux_like","linux_kernel"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/rustix-6aabf6e51fb8271c/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinystr","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtinystr-0b5a757238a9fdcd.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#polling@2.8.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-2.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"polling","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-2.8.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpolling-8c3016444b23a25a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nix@0.26.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.26.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nix","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.26.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["feature","fs","ioctl","memoffset","poll","process","signal","socket","term","uio","user"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libnix-00c6f52178306b65.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.37.28","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.37.28/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustix","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.37.28/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["fs","io-lifetimes","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librustix-c79bf7f4d205e725.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-fs@1.6.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/async-fs-cb8628adce4f7fe7/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#khronos_api@3.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/khronos_api-3.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"khronos_api","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/khronos_api-3.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libkhronos_api-c032c30807b48858.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libkhronos_api-c032c30807b48858.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/thiserror-fefa7dd4b3f26c6f/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#owned_ttf_parser@0.25.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/owned_ttf_parser-0.25.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"owned_ttf_parser","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/owned_ttf_parser-0.25.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["apple-layout","default","glyph-names","gvar-alloc","opentype-layout","std","variable-fonts"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libowned_ttf_parser-62fb9c5f41ba583e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nix@0.26.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.26.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nix","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.26.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["feature","fs","ioctl","memoffset","poll","process","signal","socket","term","uio","user"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libnix-00c6f52178306b65.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librand_chacha-a1f81b6424eb2c71.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-io@1.13.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/async-io-596b363336f86962/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","getrandom","no-rng","runtime-rng","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/ahash-8800a0edc7e7bd01/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#socket2@0.4.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.4.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.4.10/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["all"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsocket2-34c9399899731ed1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libthiserror_impl-70cbcc977eb02303.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xml-rs@0.8.28","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xml-rs-0.8.28/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xml","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xml-rs-0.8.28/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxml-16aabfbbcf739c50.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxml-16aabfbbcf739c50.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_sink","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_sink-8e108b5b1966b03d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cursor-icon@1.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cursor-icon-1.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cursor_icon","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cursor-icon-1.2.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcursor_icon-766e81eab511d4d1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litemap","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblitemap-275416ad618779bb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcpufeatures-de1c38ddd25f3a0a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-channel@2.5.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-channel-2.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_channel","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-channel-2.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_channel-4f40a4b0062fac1f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"digest","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","block-buffer","core-api","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libdigest-d448be7e2ac34eb4.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/getrandom-48827429e32c729c/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zvariant@3.15.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant-3.15.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zvariant","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant-3.15.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["enumflags2"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzvariant-023169c871f0bc6d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwriteable-8d48f18b4f562ad5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xkeysym@0.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkeysym-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xkeysym","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkeysym-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxkeysym-d6beaac88c01bf1d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_sink","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_sink-8e108b5b1966b03d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linux_raw_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["elf","errno","general","ioctl","no_std","prctl","system"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblinux_raw_sys-802f7c1e6a0d4441.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.29","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblog-c8ff0938de21e4e3.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblog-c8ff0938de21e4e3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ab_glyph_rasterizer@0.1.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ab_glyph_rasterizer-0.1.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ab_glyph_rasterizer","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ab_glyph_rasterizer-0.1.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libab_glyph_rasterizer-70799964b03b4bf2.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xkeysym@0.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkeysym-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xkeysym","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkeysym-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxkeysym-d6beaac88c01bf1d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litemap","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblitemap-275416ad618779bb.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cursor-icon@1.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cursor-icon-1.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cursor_icon","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cursor-icon-1.2.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcursor_icon-766e81eab511d4d1.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcpufeatures-de1c38ddd25f3a0a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xcursor@0.3.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xcursor-0.3.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xcursor","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xcursor-0.3.10/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxcursor-1972dff30f471995.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_task","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_task-783e9455a435e9a0.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linux_raw_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["elf","errno","general","ioctl","no_std","prctl","system"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblinux_raw_sys-802f7c1e6a0d4441.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zbus_macros@3.15.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_macros-3.15.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zbus_macros","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_macros-3.15.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzbus_macros-e82a05ec8d2166e9.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libthiserror-c790d2801ed0584b.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","linked_libs":[],"linked_paths":[],"cfgs":["folded_multiply"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/ahash-ab8854b13a429d68/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols@0.31.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.31.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.31.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","staging","unstable","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols-7ab0ac80dd4e328c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","getrandom","libc","rand_chacha","std","std_rng"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librand-cf502b5331f9b4ca.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xml-rs@0.8.28","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xml-rs-0.8.28/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xml","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xml-rs-0.8.28/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxml-16aabfbbcf739c50.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxml-16aabfbbcf739c50.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xcursor@0.3.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xcursor-0.3.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xcursor","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xcursor-0.3.10/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxcursor-1972dff30f471995.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwriteable-8d48f18b4f562ad5.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-io@1.13.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-1.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_io","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-1.13.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_io-611aa8fc3a5e03c5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgetrandom-ceb469ed7c5106eb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols@0.31.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.31.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.31.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","staging","unstable","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols-7ab0ac80dd4e328c.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","linked_libs":[],"linked_paths":[],"cfgs":["folded_multiply"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/ahash-ab8854b13a429d68/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libthiserror-c790d2801ed0584b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zbus_macros@3.15.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_macros-3.15.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zbus_macros","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_macros-3.15.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzbus_macros-e82a05ec8d2166e9.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","getrandom","libc","rand_chacha","std","std_rng"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librand-cf502b5331f9b4ca.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-csd-frame@0.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-csd-frame-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_csd_frame","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-csd-frame-0.3.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_csd_frame-3156a52211af48a3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"potential_utf","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpotential_utf-7bf2aad7c465057e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerotrie","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["yoke","zerofrom"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzerotrie-6c86af3b90a5cd34.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-executor@1.14.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-executor-1.14.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_executor","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-executor-1.14.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_executor-10b6e96c9000559b.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-broadcast@0.5.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-broadcast-0.5.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_broadcast","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-broadcast-0.5.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_broadcast-57691452200f02f7.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#blocking@1.6.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blocking-1.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"blocking","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blocking-1.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libblocking-f68240f56850336c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ab_glyph@0.2.32","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ab_glyph-0.2.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ab_glyph","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ab_glyph-0.2.32/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","gvar-alloc","std","variable-fonts"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libab_glyph-85c9b5b757c127c0.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gl_generator@0.14.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gl_generator-0.14.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gl_generator","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gl_generator-0.14.0/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgl_generator-4835593bce435510.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgl_generator-4835593bce435510.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_util","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","futures-io","futures-sink","io","memchr","sink","slab","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_util-3f6989ac3f303259.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgetrandom-ceb469ed7c5106eb.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-csd-frame@0.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-csd-frame-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_csd_frame","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-csd-frame-0.3.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_csd_frame-3156a52211af48a3.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zbus_names@2.6.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_names-2.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zbus_names","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_names-2.6.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzbus_names-ccb3c3fdfb05f9ef.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_locale_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_locale_core-f957063d017e9dbe.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustix","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","event","fs","libc-extra-traits","pipe","process","shm","std","system","thread","use-libc-auxv"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librustix-a3f5a99849d20739.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-cursor@0.31.13","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-cursor-0.31.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_cursor","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-cursor-0.31.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_cursor-9e355b7d2de6664c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha1@0.10.6","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha1","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsha1-a1978dc6e29ad70a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#derivative@2.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derivative-2.2.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"derivative","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derivative-2.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libderivative-a82b5e8025f2afd6.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#blocking@1.6.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blocking-1.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"blocking","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blocking-1.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libblocking-f68240f56850336c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zbus_names@2.6.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_names-2.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zbus_names","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_names-2.6.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzbus_names-ccb3c3fdfb05f9ef.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-cursor@0.31.13","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-cursor-0.31.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_cursor","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-cursor-0.31.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_cursor-9e355b7d2de6664c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustix","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","event","fs","libc-extra-traits","pipe","process","shm","std","system","thread","use-libc-auxv"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/librustix-a3f5a99849d20739.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_util","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","futures-io","futures-sink","io","memchr","sink","slab","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfutures_util-3f6989ac3f303259.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha1@0.10.6","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha1","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsha1-a1978dc6e29ad70a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gl_generator@0.14.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gl_generator-0.14.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gl_generator","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gl_generator-0.14.0/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgl_generator-4835593bce435510.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgl_generator-4835593bce435510.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_locale_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_locale_core-f957063d017e9dbe.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ab_glyph@0.2.32","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ab_glyph-0.2.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ab_glyph","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ab_glyph-0.2.32/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","gvar-alloc","std","variable-fonts"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libab_glyph-85c9b5b757c127c0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-broadcast@0.5.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-broadcast-0.5.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_broadcast","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-broadcast-0.5.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_broadcast-57691452200f02f7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ordered-stream@0.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ordered-stream-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ordered_stream","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ordered-stream-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libordered_stream-e47f27f8c9529feb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#x11-dl@2.21.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11-dl-2.21.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11-dl-2.21.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/x11-dl-8efea975028dcea4/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memmap2@0.9.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memmap2","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libmemmap2-aea20a987f1279d4.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xdg-home@1.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xdg-home-1.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xdg_home","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xdg-home-1.3.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxdg_home-e455a47651da09e7.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_repr","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde_repr-56ffc7dc76a6358b.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.89/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"async_trait","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.89/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_trait-0c61b4f0dc92ef74.so"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-recursion@1.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-recursion-1.1.1/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"async_recursion","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-recursion-1.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_recursion-f82e9ddfd0826778.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hex","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libhex-1ad13c98d2bb845e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.89/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"async_trait","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.89/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_trait-0c61b4f0dc92ef74.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_repr","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde_repr-56ffc7dc76a6358b.so"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/icu_properties_data-255c65bcad46fce2/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hex","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libhex-1ad13c98d2bb845e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/parking_lot_core-59872705755d3dce/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"percent_encoding","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpercent_encoding-f1bea15934c8259f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","use_std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libscopeguard-bf011647fbc9f067.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-fs@1.6.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-fs-1.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_fs","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-fs-1.6.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_fs-0b67866a87e63765.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/icu_normalizer_data-6ba8c869c3b47306/build-script-build"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/icu_properties_data-7973dc0c7e74629e/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ahash","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","getrandom","no-rng","runtime-rng","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libahash-5a5b9570796b846a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_provider","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["baked"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_provider-5ade42e0edc52a33.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","use_std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libscopeguard-bf011647fbc9f067.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_collections","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_collections-be941159c67884b6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-fs@1.6.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-fs-1.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_fs","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-fs-1.6.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_fs-0b67866a87e63765.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#calloop@0.12.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-0.12.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"calloop","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-0.12.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcalloop-2299fe24197fcce9.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#x11-dl@2.21.0","linked_libs":["dl"],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/x11-dl-a1a02b911f959e8f/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/icu_normalizer_data-90c3fc458b2da7e0/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_provider","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["baked"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_provider-5ade42e0edc52a33.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/parking_lot_core-775325932bb9b871/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_collections","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_collections-be941159c67884b6.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strict-num@0.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strict-num-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"strict_num","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strict-num-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libstrict_num-512600626321db07.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/icu_properties_data-7973dc0c7e74629e/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ahash","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","getrandom","no-rng","runtime-rng","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libahash-5a5b9570796b846a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.18.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.18.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.18.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["calloop","calloop-wayland-source"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/smithay-client-toolkit-14342d38ea92a722/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arrayref@0.3.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayref-0.3.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayref","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayref-0.3.9/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libarrayref-6dac8176c0e1ab2c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.18/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.18/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/thiserror-30bf89cd64f35e9b/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strict-num@0.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strict-num-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"strict_num","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strict-num-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libstrict_num-512600626321db07.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["atomic_usize","default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblock_api-b311a028fa043a09.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols-wlr@0.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-wlr-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols_wlr","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-wlr-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols_wlr-90f14e41ab7e0a57.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols@0.32.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.32.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.32.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","staging","unstable","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols-e72cddd8a1cf2b1b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gethostname@1.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gethostname-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gethostname","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gethostname-1.1.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libgethostname-e10765a928360294.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.18/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.18/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libthiserror_impl-d77c3972b12270af.so"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#x11rb-protocol@0.13.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11rb-protocol-0.13.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"x11rb_protocol","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11rb-protocol-0.13.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["randr","render","resource_manager","shape","std","xfixes","xinput","xkb"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libx11rb_protocol-49964f2ac14598d6.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libarrayvec-c81731cf2424be33.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#accesskit@0.12.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/accesskit-0.12.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"accesskit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/accesskit-0.12.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaccesskit-ffdb8ed92bfb8f37.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libarrayvec-c81731cf2424be33.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#as-raw-xcb-connection@1.0.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/as-raw-xcb-connection-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"as_raw_xcb_connection","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/as-raw-xcb-connection-1.0.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libas_raw_xcb_connection-ae5cd572403e8c14.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#x11rb-protocol@0.13.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11rb-protocol-0.13.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"x11rb_protocol","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11rb-protocol-0.13.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["randr","render","resource_manager","shape","std","xfixes","xinput","xkb"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libx11rb_protocol-49964f2ac14598d6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winit@0.29.15","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winit-0.29.15/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winit-0.29.15/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ahash","bytemuck","default","memmap2","percent-encoding","rwh_05","rwh_06","sctk","sctk-adwaita","wayland","wayland-backend","wayland-client","wayland-csd-adwaita","wayland-dlopen","wayland-protocols","wayland-protocols-plasma","x11","x11-dl","x11rb"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/winit-0a64ed2ab33be07d/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simd_adler32","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const-generics","default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsimd_adler32-7b74fcec4c45ac5b.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/icu_normalizer_data-90c3fc458b2da7e0/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/serde-41ed44c51f4bde73/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zbus@3.15.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus-3.15.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zbus","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus-3.15.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-executor","async-fs","async-io","async-lock","async-task","blocking"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libzbus-e14c6aa36e3c4d99.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#calloop-wayland-source@0.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"calloop_wayland_source","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.2.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcalloop_wayland_source-95e3bcd2a68b7370.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tiny-skia-path@0.11.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-path-0.11.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tiny_skia_path","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-path-0.11.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtiny_skia_path-9faa5447e46dfde0.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.18.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/smithay-client-toolkit-ce5b6bbb1fe11c6f/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_properties_data-a09be0d03dc603de.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#calloop-wayland-source@0.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"calloop_wayland_source","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.2.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcalloop_wayland_source-95e3bcd2a68b7370.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libparking_lot_core-5ec9186cd84a4fc5.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#x11-dl@2.21.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11-dl-2.21.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"x11_dl","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11-dl-2.21.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libx11_dl-50f312e3a56afeed.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/thiserror-7399ea59ce3845b2/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tiny-skia-path@0.11.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-path-0.11.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tiny_skia_path","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-path-0.11.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtiny_skia_path-9faa5447e46dfde0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#x11-dl@2.21.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11-dl-2.21.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"x11_dl","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11-dl-2.21.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libx11_dl-50f312e3a56afeed.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_properties_data-a09be0d03dc603de.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer_data","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_normalizer_data-e8ad1c5c5a7a13dd.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#x11rb@0.13.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11rb-0.13.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"x11rb","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/x11rb-0.13.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["allow-unsafe-code","as-raw-xcb-connection","dl-libxcb","libc","libloading","once_cell","randr","render","resource_manager","shape","xfixes","xinput","xkb"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libx11rb-402ffe5049061fa3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/crc32fast-95e9d2f74c4f93cb/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#raw-window-handle@0.5.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/raw-window-handle-0.5.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"raw_window_handle","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/raw-window-handle-0.5.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libraw_window_handle-b9564345b9f69bd0.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":["if_docsrs_then_no_serde_core"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/serde-fa9a0f6ff31d8776/out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#winit@0.29.15","linked_libs":[],"linked_paths":[],"cfgs":["free_unix","x11_platform","wayland_platform"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/winit-3bfad3989d6c6da2/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_egl_sys@0.6.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin_egl_sys-0.6.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin_egl_sys-0.6.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/glutin_egl_sys-5461720efb775d4c/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_glx_sys@0.5.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin_glx_sys-0.5.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin_glx_sys-0.5.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/glutin_glx_sys-969416c4f83f2e3d/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols-plasma@0.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-plasma-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols_plasma","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-plasma-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols_plasma-126ad17ba1ed7043.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xkbcommon-dl@0.4.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkbcommon-dl-0.4.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xkbcommon_dl","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkbcommon-dl-0.4.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["x11"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libxkbcommon_dl-98ea47e6af2c205f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols-plasma@0.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-plasma-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols_plasma","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-plasma-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols_plasma-126ad17ba1ed7043.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#calloop@0.14.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-0.14.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"calloop","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-0.14.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcalloop-343eea97aa26b993.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ecolor@0.27.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ecolor-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ecolor","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ecolor-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libecolor-895b82d6b40cd5dd.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#emath@0.27.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/emath-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"emath","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/emath-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libemath-c6e0c56a39c9a186.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.20.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.20.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.20.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["calloop","calloop-wayland-source"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/smithay-client-toolkit-a9abdc2eff9d1936/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"adler2","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libadler2-93e3fa45bc1d589b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ecolor@0.27.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ecolor-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ecolor","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ecolor-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libecolor-895b82d6b40cd5dd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_core","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["result","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde_core-c0ad1ad049c935c2.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde_core-c0ad1ad049c935c2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nohash-hasher@0.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nohash-hasher-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nohash_hasher","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nohash-hasher-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libnohash_hasher-e9034a76cbcc569a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smol_str@0.2.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smol_str-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smol_str","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smol_str-0.2.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsmol_str-88ed485a9f1c83af.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#raw-window-handle@0.6.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/raw-window-handle-0.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"raw_window_handle","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/raw-window-handle-0.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libraw_window_handle-d0d6afd4808c4682.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atspi-common@0.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atspi-common-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atspi_common","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atspi-common-0.3.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-std","zbus"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libatspi_common-c468ce02a23d5d19.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer_data","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_normalizer_data-e8ad1c5c5a7a13dd.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.18.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.18.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smithay_client_toolkit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.18.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["calloop","calloop-wayland-source"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsmithay_client_toolkit-1dd5ac084ff91a0b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_properties-d53e8488b176962c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libparking_lot-0336b58e6b584602.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.18/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.18/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libthiserror-2c51bccf206dc87d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_properties-d53e8488b176962c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tiny-skia@0.11.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-0.11.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tiny_skia","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-0.11.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtiny_skia-9897146f12fd8e33.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_normalizer-e9c9377a83417447.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.18.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.18.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smithay_client_toolkit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.18.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["calloop","calloop-wayland-source"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsmithay_client_toolkit-1dd5ac084ff91a0b.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","linked_libs":[],"linked_paths":[],"cfgs":["stable_arm_crc32_intrinsics"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/crc32fast-f34fc6c21be670b6/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"adler2","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libadler2-93e3fa45bc1d589b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8_iter","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libutf8_iter-657435fd4aa9af70.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nohash-hasher@0.2.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nohash-hasher-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nohash_hasher","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nohash-hasher-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libnohash_hasher-e9034a76cbcc569a.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.20.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/smithay-client-toolkit-28e27812c6894a6b/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#calloop-wayland-source@0.4.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"calloop_wayland_source","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.4.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcalloop_wayland_source-a6cbb7f5fee036f0.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"miniz_oxide","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","simd","simd-adler32","with-alloc"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libminiz_oxide-9c773ebdcc3a7ee4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#raw-window-handle@0.6.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/raw-window-handle-0.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"raw_window_handle","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/raw-window-handle-0.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libraw_window_handle-d0d6afd4808c4682.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.20.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.20.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.20.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["calloop","calloop-wayland-source"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/smithay-client-toolkit-a9abdc2eff9d1936/build-script-build"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_glx_sys@0.5.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/glutin_glx_sys-a37723cbd531b0a8/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde-f76d6260070065c9.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserde-f76d6260070065c9.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_egl_sys@0.6.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/glutin_egl_sys-dbe8513e89b2182a/out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols-misc@0.3.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-misc-0.3.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols_misc","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-misc-0.3.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols_misc-5be0a18be934ed18.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#calloop-wayland-source@0.4.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"calloop_wayland_source","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.4.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcalloop_wayland_source-a6cbb7f5fee036f0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#accesskit_consumer@0.16.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/accesskit_consumer-0.16.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"accesskit_consumer","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/accesskit_consumer-0.16.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaccesskit_consumer-9d9145ee74952f4f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols-wlr@0.3.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-wlr-0.3.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols_wlr","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-wlr-0.3.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols_wlr-f326fecd518a1b9d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols-misc@0.3.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-misc-0.3.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols_misc","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-misc-0.3.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols_misc-5be0a18be934ed18.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols-experimental@20250721.0.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-experimental-20250721.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols_experimental","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-experimental-20250721.0.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols_experimental-d84073ad03494bef.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols-wlr@0.3.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-wlr-0.3.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols_wlr","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-wlr-0.3.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","wayland-client"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwayland_protocols_wlr-f326fecd518a1b9d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libform_urlencoded-350572c4320bcbf0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin@0.31.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin-0.31.3/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin-0.31.3/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","egl","glutin_egl_sys","glutin_glx_sys","glutin_wgl_sys","glx","libloading","wayland","wayland-sys","wgl","windows-sys","x11","x11-dl"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/glutin-1607a6466f4de62d/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libudev-sys@0.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-sys-0.1.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-sys-0.1.4/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/libudev-sys-dfae42458da4bc4d/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/num-traits-c95fc3ea71230dc8/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/memoffset-f3a2154a1bf2412b/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libicu_normalizer-e9c9377a83417447.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf-literal","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaho_corasick-5f34d657d8d025c0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atspi-proxies@0.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atspi-proxies-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atspi_proxies","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atspi-proxies-0.3.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libatspi_proxies-4c266ef8edfeb847.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna_adapter","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libidna_adapter-e59b155c636ea774.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sctk-adwaita@0.8.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sctk-adwaita-0.8.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sctk_adwaita","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sctk-adwaita-0.8.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ab_glyph","memmap2"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsctk_adwaita-2f6516d846dacece.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#epaint@0.27.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/epaint-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"epaint","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/epaint-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","default_fonts","log"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libepaint-389babc258448518.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc32fast","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcrc32fast-14ecf8f6d010c843.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf-literal","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaho_corasick-5f34d657d8d025c0.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.20.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/smithay-client-toolkit-28e27812c6894a6b/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"miniz_oxide","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","simd","simd-adler32","with-alloc"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libminiz_oxide-9c773ebdcc3a7ee4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/memoffset-f3a2154a1bf2412b/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libudev-sys@0.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-sys-0.1.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-sys-0.1.4/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/libudev-sys-dfae42458da4bc4d/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_syntax-e2ac483e47d386de.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["proc-macro"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/proc-macro2-d2806b90ed81e8f2/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-once-cell@0.5.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-once-cell-0.5.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_once_cell","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-once-cell-0.5.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libasync_once_cell-054038e23ffb4dc5.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.10","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_syntax-e2ac483e47d386de.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin@0.31.3","linked_libs":[],"linked_paths":[],"cfgs":["free_unix","x11_platform","wayland_platform","egl_backend","glx_backend"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/glutin-25dbc87a90fa5fc7/out"} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","linked_libs":[],"linked_paths":[],"cfgs":["has_total_cmp"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/num-traits-6d7206b3dc2f075a/out"} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","linked_libs":[],"linked_paths":[],"cfgs":["tuple_ty","allow_clippy","maybe_uninit","doctests","raw_ref_macros","stable_const","stable_offset_of"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/memoffset-7272e13690f27ebd/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_egl_sys@0.6.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin_egl_sys-0.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin_egl_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin_egl_sys-0.6.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libglutin_egl_sys-564ec425bb5eec75.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.20.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.20.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smithay_client_toolkit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.20.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["calloop","calloop-wayland-source"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsmithay_client_toolkit-fe5d8599c1af0dbc.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","linked_libs":[],"linked_paths":[],"cfgs":["has_total_cmp"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/num-traits-6d7206b3dc2f075a/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin_glx_sys@0.5.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin_glx_sys-0.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin_glx_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin_glx_sys-0.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libglutin_glx_sys-a553252cc97a170a.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libudev-sys@0.1.4","linked_libs":["udev"],"linked_paths":["native=/usr/lib"],"cfgs":["hwdb"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/libudev-sys-eb80f7c1f3ff2cf2/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml@0.5.11","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.5.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.5.11/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtoml-387a475e93f44a03.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libtoml-387a475e93f44a03.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin@0.31.3","linked_libs":[],"linked_paths":[],"cfgs":["free_unix","x11_platform","wayland_platform","egl_backend","glx_backend"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/glutin-25dbc87a90fa5fc7/out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fdeflate@0.3.7","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fdeflate-0.3.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fdeflate","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fdeflate-0.3.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libfdeflate-cd4fdcc1631e4d94.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin-winit@0.4.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin-winit-0.4.2/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin-winit-0.4.2/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","egl","glx","wayland","wgl","x11"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/glutin-winit-787609ca4c2b4d95/build-script-build"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8parse","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libutf8parse-73bed9f9a2974e49.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#home@0.5.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"home","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.12/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libhome-814c7af2106dbf59.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8parse","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libutf8parse-73bed9f9a2974e49.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ident","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libunicode_ident-c0c3c6e05b10e9df.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arboard@3.6.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arboard-3.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arboard","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arboard-3.6.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libarboard-6f85c8d700c461f4.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litrs@1.0.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litrs-1.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litrs","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litrs-1.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblitrs-8dddfa020108864f.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblitrs-8dddfa020108864f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstyle_query","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libanstyle_query-3fc67089d2e276f5.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna_adapter","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libidna_adapter-e59b155c636ea774.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atspi-connection@0.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atspi-connection-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atspi_connection","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atspi-connection-0.3.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libatspi_connection-e96c932f15960c3e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winit@0.29.15","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winit-0.29.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winit-0.29.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ahash","bytemuck","default","memmap2","percent-encoding","rwh_05","rwh_06","sctk","sctk-adwaita","wayland","wayland-backend","wayland-client","wayland-csd-adwaita","wayland-dlopen","wayland-protocols","wayland-protocols-plasma","x11","x11-dl","x11rb"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwinit-ebb05402d42cf9ac.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-onepass","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_automata-5c59130aad95eb00.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","compiled_data","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libidna-cdff3130976d88f7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["any_impl","default","miniz_oxide","rust_backend"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libflate2-9f6737974eef61a9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-client-toolkit@0.20.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.20.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smithay_client_toolkit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-client-toolkit-0.20.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["calloop","calloop-wayland-source"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsmithay_client_toolkit-fe5d8599c1af0dbc.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","linked_libs":[],"linked_paths":[],"cfgs":["wrap_proc_macro","proc_macro_span_location","proc_macro_span_file"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/proc-macro2-da8c3866133eb186/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libudev-sys@0.1.4","linked_libs":["udev"],"linked_paths":["native=/usr/lib"],"cfgs":["hwdb"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/libudev-sys-eb80f7c1f3ff2cf2/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","linked_libs":[],"linked_paths":[],"cfgs":["tuple_ty","allow_clippy","maybe_uninit","doctests","raw_ref_macros","stable_const","stable_offset_of"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/memoffset-7272e13690f27ebd/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-onepass","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex_automata-5c59130aad95eb00.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui@0.27.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/egui-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/egui-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["accesskit","bytemuck","default","default_fonts","log"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libegui-8fe14495d185aa66.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstyle_parse","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","utf8"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libanstyle_parse-c4c4969d016aa2ec.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin@0.31.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin-0.31.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin-0.31.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","egl","glutin_egl_sys","glutin_glx_sys","glutin_wgl_sys","glx","libloading","wayland","wayland-sys","wgl","windows-sys","x11","x11-dl"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libglutin-4f0776fe93207963.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-clipboard@0.7.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-clipboard-0.7.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smithay_clipboard","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-clipboard-0.7.3/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","dlopen"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsmithay_clipboard-a13e65727970bb76.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin-winit@0.4.2","linked_libs":[],"linked_paths":[],"cfgs":["free_unix","x11_platform","wayland_platform","egl_backend","glx_backend"],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/glutin-winit-3fa9842e2f61d377/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winres@0.1.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winres-0.1.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winres","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winres-0.1.12/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwinres-04c026f720f0c34d.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwinres-04c026f720f0c34d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstyle_parse","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","utf8"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libanstyle_parse-c4c4969d016aa2ec.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_traits","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libnum_traits-2479a1e300e87059.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libudev-sys@0.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-sys-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libudev_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-sys-0.1.4/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblibudev_sys-d5e3dfd3ce787df0.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memoffset","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libmemoffset-961da77995b0e2fd.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#color_quant@1.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/color_quant-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"color_quant","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/color_quant-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcolor_quant-3ee8221d5a0da6fd.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"is_terminal_polyfill","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libis_terminal_polyfill-79537160b759df96.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glow@0.13.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glow-0.13.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glow","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glow-0.13.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libglow-ea08d1cd58e1004e.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstyle","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libanstyle-5c19d35ab616608b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#web-time@0.2.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-time-0.2.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"web_time","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-time-0.2.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libweb_time-6835cb393bbe9283.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstyle","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libanstyle-5c19d35ab616608b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"is_terminal_polyfill","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libis_terminal_polyfill-79537160b759df96.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litrs@1.0.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litrs-1.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litrs","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litrs-1.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblitrs-8dddfa020108864f.rlib","/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblitrs-8dddfa020108864f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#color_quant@1.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/color_quant-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"color_quant","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/color_quant-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcolor_quant-3ee8221d5a0da6fd.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"colorchoice","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcolorchoice-25db133bfb7865f1.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#document-features@0.2.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/document-features-0.2.12/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"document_features","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/document-features-0.2.12/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libdocument_features-c8d079355a9661b2.so"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unescaper@0.1.8","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unescaper-0.1.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unescaper","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unescaper-0.1.8/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libunescaper-4c98474ead772059.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.23","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jiff","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libjiff-6e67b1260ff3f424.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.15","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-channel-0.5.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_channel","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-channel-0.5.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcrossbeam_channel-923f4bf9bcf1eef2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atspi@0.19.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atspi-0.19.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atspi","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atspi-0.19.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-std","atspi-connection","atspi-proxies","connection","connection-async-std","proxies","proxies-async-std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libatspi-464591d577c4cb81.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","compiled_data","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libidna-cdff3130976d88f7.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro2","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["proc-macro"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libproc_macro2-eb4b2e531e1afd01.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#url@2.5.8","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liburl-cd0a5b79a9798568.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memoffset","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libmemoffset-961da77995b0e2fd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libudev-sys@0.1.4","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-sys-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libudev_sys","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-sys-0.1.4/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblibudev_sys-d5e3dfd3ce787df0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#png@0.17.16","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/png-0.17.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"png","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/png-0.17.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libpng-8fc9e70bfb9cd01f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.12.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf","perf-backtrack","perf-cache","perf-dfa","perf-inline","perf-literal","perf-onepass","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libregex-fdf5e96788e17b3d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libudev@0.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libudev","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-0.3.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblibudev-b2cc89b3ece1ce5e.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui_glow@0.27.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/egui_glow-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui_glow","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/egui_glow-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["wayland","x11"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libegui_glow-365eadff3413e927.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstream","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["auto","wincon"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libanstream-af8a360b33439e53.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smithay-clipboard@0.7.3","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-clipboard-0.7.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smithay_clipboard","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smithay-clipboard-0.7.3/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","dlopen"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libsmithay_clipboard-a13e65727970bb76.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro2","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["proc-macro"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libproc_macro2-eb4b2e531e1afd01.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///home/martino/Projects/apsbps/hmi_gui#esp32p4-waveform-gui@0.1.0","manifest_path":"/home/martino/Projects/apsbps/hmi_gui/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/martino/Projects/apsbps/hmi_gui/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/build/esp32p4-waveform-gui-b0caf44326518b6c/build-script-build"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glutin-winit@0.4.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin-winit-0.4.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glutin_winit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glutin-winit-0.4.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","egl","glx","wayland","wgl","x11"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libglutin_winit-ebf0773762603731.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#document-features@0.2.12","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/document-features-0.2.12/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"document_features","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/document-features-0.2.12/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libdocument_features-c8d079355a9661b2.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstream","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["auto","wincon"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libanstream-af8a360b33439e53.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.15","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-channel-0.5.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_channel","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-channel-0.5.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libcrossbeam_channel-923f4bf9bcf1eef2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#accesskit_unix@0.6.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/accesskit_unix-0.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"accesskit_unix","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/accesskit_unix-0.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-io"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaccesskit_unix-6a332e1add105a0a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#url@2.5.8","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liburl-cd0a5b79a9798568.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#env_filter@1.0.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"env_filter","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["regex"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libenv_filter-fe12f9ee1cd1af21.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.40","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libquote-662825970014452b.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#image@0.24.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/image-0.24.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"image","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/image-0.24.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["png"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libimage-9e049f0fefdd835e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webbrowser@0.8.15","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webbrowser-0.8.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webbrowser","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webbrowser-0.8.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libwebbrowser-061cef000d9f1ffd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libudev@0.3.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libudev","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libudev-0.3.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/liblibudev-b2cc89b3ece1ce5e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#image@0.24.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/image-0.24.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"image","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/image-0.24.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["png"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libimage-9e049f0fefdd835e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.40","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libquote-662825970014452b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui_glow@0.27.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/egui_glow-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui_glow","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/egui_glow-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["wayland","x11"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libegui_glow-365eadff3413e927.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#env_filter@1.0.0","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"env_filter","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["regex"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libenv_filter-fe12f9ee1cd1af21.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#accesskit_winit@0.16.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/accesskit_winit-0.16.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"accesskit_winit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/accesskit_winit-0.16.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["accesskit_unix","async-io","default"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libaccesskit_winit-2c84db2bfb83a5a7.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serialport@4.8.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serialport-4.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serialport","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serialport-4.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","libudev"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserialport-ea52ce1b010184df.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.9","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"env_logger","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["auto-color","color","default","humantime","regex"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libenv_logger-9d292acfc14a2c51.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serialport@4.8.1","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serialport-4.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serialport","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serialport-4.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","libudev"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libserialport-ea52ce1b010184df.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#egui-winit@0.27.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/egui-winit-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"egui_winit","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/egui-winit-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["accesskit","accesskit_winit","arboard","bytemuck","clipboard","links","smithay-clipboard","wayland","webbrowser","x11"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libegui_winit-b0aedfe68cdc68ed.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#eframe@0.27.2","manifest_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/eframe-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"eframe","src_path":"/home/martino/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/eframe-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["accesskit","default","default_fonts","glow","wayland","web_screen_reader","x11"],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libeframe-3adc54662d89ea20.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-message","package_id":"path+file:///home/martino/Projects/apsbps/hmi_gui#esp32p4-waveform-gui@0.1.0","manifest_path":"/home/martino/Projects/apsbps/hmi_gui/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"esp32p4-waveform-gui","src_path":"/home/martino/Projects/apsbps/hmi_gui/src/main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"message":{"rendered":"warning: unused variable: `port_combo`\n --> src/main.rs:139:25\n |\n139 | let port_combo = egui::ComboBox::from_id_source(\"port_select\")\n | ^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_port_combo`\n |\n = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n","$message_type":"diagnostic","children":[{"children":[],"code":null,"level":"note","message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","rendered":null,"spans":[]},{"children":[],"code":null,"level":"help","message":"if this is intentional, prefix it with an underscore","rendered":null,"spans":[{"byte_end":4640,"byte_start":4630,"column_end":35,"column_start":25,"expansion":null,"file_name":"src/main.rs","is_primary":true,"label":null,"line_end":139,"line_start":139,"suggested_replacement":"_port_combo","suggestion_applicability":"MachineApplicable","text":[{"highlight_end":35,"highlight_start":25,"text":" let port_combo = egui::ComboBox::from_id_source(\"port_select\")"}]}]}],"level":"warning","message":"unused variable: `port_combo`","spans":[{"byte_end":4640,"byte_start":4630,"column_end":35,"column_start":25,"expansion":null,"file_name":"src/main.rs","is_primary":true,"label":null,"line_end":139,"line_start":139,"suggested_replacement":null,"suggestion_applicability":null,"text":[{"highlight_end":35,"highlight_start":25,"text":" let port_combo = egui::ComboBox::from_id_source(\"port_select\")"}]}],"code":{"code":"unused_variables","explanation":null}}} -{"reason":"compiler-message","package_id":"path+file:///home/martino/Projects/apsbps/hmi_gui#esp32p4-waveform-gui@0.1.0","manifest_path":"/home/martino/Projects/apsbps/hmi_gui/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"esp32p4-waveform-gui","src_path":"/home/martino/Projects/apsbps/hmi_gui/src/main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"message":{"rendered":"warning: unused variable: `port_combo`\n --> src/main.rs:139:25\n |\n139 | let port_combo = egui::ComboBox::from_id_source(\"port_select\")\n | ^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_port_combo`\n |\n = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n","$message_type":"diagnostic","children":[{"children":[],"code":null,"level":"note","message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","rendered":null,"spans":[]},{"children":[],"code":null,"level":"help","message":"if this is intentional, prefix it with an underscore","rendered":null,"spans":[{"byte_end":4640,"byte_start":4630,"column_end":35,"column_start":25,"expansion":null,"file_name":"src/main.rs","is_primary":true,"label":null,"line_end":139,"line_start":139,"suggested_replacement":"_port_combo","suggestion_applicability":"MachineApplicable","text":[{"highlight_end":35,"highlight_start":25,"text":" let port_combo = egui::ComboBox::from_id_source(\"port_select\")"}]}]}],"level":"warning","message":"unused variable: `port_combo`","spans":[{"byte_end":4640,"byte_start":4630,"column_end":35,"column_start":25,"expansion":null,"file_name":"src/main.rs","is_primary":true,"label":null,"line_end":139,"line_start":139,"suggested_replacement":null,"suggestion_applicability":null,"text":[{"highlight_end":35,"highlight_start":25,"text":" let port_combo = egui::ComboBox::from_id_source(\"port_select\")"}]}],"code":{"code":"unused_variables","explanation":null}}} -{"reason":"compiler-artifact","package_id":"path+file:///home/martino/Projects/apsbps/hmi_gui#esp32p4-waveform-gui@0.1.0","manifest_path":"/home/martino/Projects/apsbps/hmi_gui/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"esp32p4-waveform-gui","src_path":"/home/martino/Projects/apsbps/hmi_gui/src/main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libesp32p4_waveform_gui-9e7b733ba0208723.rmeta"],"executable":null,"fresh":false} -{"reason":"compiler-artifact","package_id":"path+file:///home/martino/Projects/apsbps/hmi_gui#esp32p4-waveform-gui@0.1.0","manifest_path":"/home/martino/Projects/apsbps/hmi_gui/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"esp32p4-waveform-gui","src_path":"/home/martino/Projects/apsbps/hmi_gui/src/main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libesp32p4_waveform_gui-32bee7e61c16136e.rmeta"],"executable":null,"fresh":false} +{"reason":"build-script-executed","package_id":"path+file:///home/martino/Projects/apsbps/hmi_gui#esp32p4-waveform-gui@0.1.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/martino/Projects/apsbps/hmi_gui/target/debug/build/esp32p4-waveform-gui-c6f874fde4424902/out"} +{"reason":"compiler-artifact","package_id":"path+file:///home/martino/Projects/apsbps/hmi_gui#esp32p4-waveform-gui@0.1.0","manifest_path":"/home/martino/Projects/apsbps/hmi_gui/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"esp32p4-waveform-gui","src_path":"/home/martino/Projects/apsbps/hmi_gui/src/main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libesp32p4_waveform_gui-b03498e39ec8818f.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///home/martino/Projects/apsbps/hmi_gui#esp32p4-waveform-gui@0.1.0","manifest_path":"/home/martino/Projects/apsbps/hmi_gui/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"esp32p4-waveform-gui","src_path":"/home/martino/Projects/apsbps/hmi_gui/src/main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/martino/Projects/apsbps/hmi_gui/target/debug/deps/libesp32p4_waveform_gui-3aa9ba6f7259431f.rmeta"],"executable":null,"fresh":false} {"reason":"build-finished","success":true} diff --git a/hmi_gui/target/x86_64-pc-windows-gnu/release/esp32p4-waveform-gui.exe b/hmi_gui/target/x86_64-pc-windows-gnu/release/esp32p4-waveform-gui.exe index ab7247e71f51dae90fdd31258a93eba588dbd827..40d888fb8b1353895416607c6eeded2aaf04992e 100755 GIT binary patch delta 1610573 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 z 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

yTAxgWrNVB;MOXF(?-ael1 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