timewarrior_report 0.1.0

Read the data from Timewarrior to create reports
Documentation
[![Workflow Status](https://github.com/scattenlaeufer/timewarrior-report-rs/workflows/Rust%20checks/badge.svg)](https://github.com/scattenlaeufer/timewarrior-report-rs/actions?query=workflow%3A%22Rust+checks%22)

# timewarrior-report-rs

A crate to read the data passed by creating a
[Timewarrior](https://timewarrior.net/) 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 report_data = TimewarriorData::from_stdin();
   dbg!(report_data);
}
```