gitlab-time-report 1.3.0

Library to generate statistics and charts from GitLab time tracking data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! This library exports time logs from a GitLab project and creates statistics and charts
//! showing the working hours spent on it.

#[cfg(feature = "charts")]
pub mod charts;
mod chrono_extensions;
#[cfg(feature = "dashboard")]
pub mod dashboard;
pub mod export;
mod fetch_api;
pub mod filters;
pub mod model;
pub mod tables;
pub mod validation;

pub use chrono_extensions::TimeDeltaExt;
pub use export::create_csv;
pub use fetch_api::{FetchOptions, QueryError, fetch_project_time_logs};