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:

```rust use timewarrior_report::TimewarriorData;

fn main() { let reportdata = TimewarriorData::fromstdin(); dbg!(report_data); } ```