An open API service indexing awesome lists of open source software.

https://github.com/scattenlaeufer/timewarrior-report-rs

A crate to build reports from Timewarrior's extension API
https://github.com/scattenlaeufer/timewarrior-report-rs

rust rust-lang timetracking timewarrior

Last synced: about 1 year ago
JSON representation

A crate to build reports from Timewarrior's extension API

Awesome Lists containing this project

README

          

# 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);
}
```