change to some option flags; addition of due dates; changes to display of tasks

This commit is contained in:
aaron-jack-manning
2022-08-24 22:09:52 +10:00
parent 0022f8de53
commit 8bbe32fb6c
5 changed files with 110 additions and 16 deletions

View File

@@ -22,6 +22,8 @@ pub struct InternalState {
pub next_id : Id,
#[serde_as(as = "HashMap<DisplayFromStr, _>")]
pub index : HashMap<String, Vec<Id>>,
//#[serde_as(as = "HashMap<DisplayFromStr, _>")]
//pub dependencies : HashMap<Id, Vec<Id>>,
}
impl State {
@@ -70,6 +72,8 @@ impl State {
}
}
//
let data = InternalState {
next_id : u64::try_from(max_id + 1).unwrap(),
index,