sara-tasks 1.5.2

Sara — folder-aware task manager
1
2
3
4
5
6
7
8
9
10
11
use chrono::NaiveDate;
use std::collections::HashMap;

pub(super) struct ActivityData {
    pub counts: HashMap<NaiveDate, u32>,
    pub project: Option<String>,
    pub total_created: u32,
    pub total_completed: u32,
    pub cur_streak: u32,
    pub longest_streak: u32,
}