Meeting Cost Tracker
Meeting Cost Tracker provides a Rust library and accompanying terminal user interface (TUI) for monitoring the real‑time cost of meetings. Costs are calculated from each attendee's salary and the time elapsed.
The library is lightweight and can be embedded in your own tools. A fully featured TUI application is also provided for quick tracking from the command line.

Installation
From crates.io
Add the library to your project with:
$ cargo add meeting_cost_tracker
Install the standalone TUI application:
$ cargo install meeting_cost_tracker
From source
Clone the repository and build:
$ git clone https://github.com/Andrewsimsd/meeting_cost_tracker
$ cd meeting_cost_tracker
$ cargo install --path .
Example
use ;
let category = new.unwrap;
let mut meeting = new;
meeting.add_attendee;
meeting.start;
sleep;
meeting.stop;
println!;
TUI Usage
Run the interactive tracker with:
$ mct
Keyboard shortcuts:
- s – start/stop the meeting
- c – reset accumulated time and cost
- a – add a new salary category
- d – delete an existing category
- e – add attendees
- r – remove attendees
- w – save attendees to a file
- l – load attendees from a file (opens file picker)
- p – toggle salary visibility
- q – quit
Categories are persisted to data/categories.toml next to the executable.
Attendee lists can be saved and loaded from the same directory using the w key.
Press l to open a file picker showing available attendee lists in that directory.
See Also
Meeting– core meeting logicEmployeeCategory– employee salary representationload_categories– persistence helpers
License
Licensed under either the MIT license or Apache License 2.0 at your option.