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
- Host: GitHub
- URL: https://github.com/scattenlaeufer/timewarrior-report-rs
- Owner: scattenlaeufer
- Created: 2021-06-26T14:47:49.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-11T19:18:27.000Z (almost 5 years ago)
- Last Synced: 2025-05-17T14:11:30.001Z (about 1 year ago)
- Topics: rust, rust-lang, timetracking, timewarrior
- Language: Rust
- Homepage: https://crates.io/crates/timewarrior_report
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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);
}
```