timewarrior_report

Crates.iotimewarrior_report
lib.rstimewarrior_report
version0.1.0
sourcesrc
created_at2021-07-11 19:30:31.051961
updated_at2021-07-11 19:30:31.051961
descriptionRead the data from Timewarrior to create reports
homepage
repositoryhttps://github.com/scattenlaeufer/timewarrior-report-rs
max_upload_size
id421540
size16,361
Björn Guth (scattenlaeufer)

documentation

README

Workflow Status

timewarrior-report-rs

A crate to read the data passed by creating a Timewarrior report, written in Rust.

Usage

This is a basic example to read the data for a Timewarrior report from stdin and print it:

use timewarrior_report::TimewarriorData;

fn main() {
   let report_data = TimewarriorData::from_stdin();
   dbg!(report_data);
}
Commit count: 20

cargo fmt