From b781b96f4adc0dfa1dd100b8b72497c97fd87673 Mon Sep 17 00:00:00 2001 From: Alix ANNERAUD Date: Thu, 20 Jun 2024 18:44:16 -0400 Subject: [PATCH] Fix graphics task dependency --- Modules/Graphics/Cargo.toml | 1 + Modules/Graphics/src/Window.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules/Graphics/Cargo.toml b/Modules/Graphics/Cargo.toml index d1e7008..a4a2a45 100644 --- a/Modules/Graphics/Cargo.toml +++ b/Modules/Graphics/Cargo.toml @@ -5,6 +5,7 @@ edition = "2021" [dependencies] cstr_core = "0.2.6" +Task = { path = "../Task" } [target.'cfg( target_os = "espidf" )'.dependencies] lvgl = { git = "https://github.com/lvgl/lv_binding_rust.git", default-features = false, features = [ diff --git a/Modules/Graphics/src/Window.rs b/Modules/Graphics/src/Window.rs index 85b940d..c7e6eb9 100644 --- a/Modules/Graphics/src/Window.rs +++ b/Modules/Graphics/src/Window.rs @@ -4,7 +4,7 @@ use lvgl::{ widgets::Label, LvError, NativeObject, Obj, Widget, }; -use Shared::Task_identifier_type; +use Task::Task_identifier_type; pub type Windows_indentifier_type = u16;