Crates.io | timewarrior_report |
lib.rs | timewarrior_report |
version | 0.1.0 |
source | src |
created_at | 2021-07-11 19:30:31.051961 |
updated_at | 2021-07-11 19:30:31.051961 |
description | Read the data from Timewarrior to create reports |
homepage | |
repository | https://github.com/scattenlaeufer/timewarrior-report-rs |
max_upload_size | |
id | 421540 |
size | 16,361 |
A crate to read the data passed by creating a Timewarrior report, written in Rust.
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);
}