ghassmo пре 4 година
родитељ
комит
6ae7ee50d2
2 измењених фајлова са 3 додато и 3 уклоњено
  1. 2 2
      bin/tau/taud/Cargo.toml
  2. 1 1
      bin/tau/taud/src/month_tasks.rs

+ 2 - 2
bin/tau/taud/Cargo.toml

@@ -25,8 +25,8 @@ simplelog = "0.12.0"
 rand = "0.8.5"
 chrono = "0.4.19"
 thiserror = "1.0.30"
+ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
 
 # Encoding and parsing
-serde_json = "1.0.79"
 serde = {version = "1.0.136", features = ["derive"]}
-ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
+serde_json = "1.0.79"

+ 1 - 1
bin/tau/taud/src/month_tasks.rs

@@ -6,7 +6,7 @@ use serde::{Deserialize, Serialize};
 
 use crate::{
     error::{TaudError, TaudResult},
-    task_debug::TaskInfo,
+    task_info::TaskInfo,
     util::{get_current_time, load, save, Timestamp},
 };