| Crates.io | hiredavidparker |
| lib.rs | hiredavidparker |
| version | 0.1.0 |
| created_at | 2025-03-20 01:45:14.379824+00 |
| updated_at | 2025-03-20 01:45:14.379824+00 |
| description | Interactive terminal-based resume application with a TUI interface |
| homepage | https://github.com/davidparkercodes/hire-david-parker |
| repository | https://github.com/davidparkercodes/hire-david-parker |
| max_upload_size | |
| id | 1598803 |
| size | 134,483 |
An interactive terminal-based resume application built with Rust.
# Install directly from crates.io
cargo install hiredavidparker
# Clone the repository
git clone <repository-url>
cd hire-david-parker
# Build the application
cargo build --release
# The binary will be located at ./target/release/hiredavidparker
Run the application in interactive TUI mode:
hiredavidparker
# or
hiredavidparker run
Show the about information:
hiredavidparker about
Add to your Cargo.toml:
[dependencies]
hiredavidparker = "0.1.0"
Example usage:
use hiredavidparker::{about, skills, projects};
fn main() {
// Get content from various sections
println!("{}", about());
// Load timeline data
if let Ok(timeline_events) = hiredavidparker::load_timeline_data() {
for event in timeline_events {
println!("{}: {} at {}", event.year, event.title, event.organization);
}
}
}
This project follows specific development guidelines. Please refer to the UPDATERULES.md file for more information.
cargo test
We use cargo-tarpaulin for test coverage reporting:
# Install cargo-tarpaulin (if not already installed)
cargo install cargo-tarpaulin
# Run the coverage script
./scripts/coverage.sh
# Or run tarpaulin directly
cargo tarpaulin --verbose --workspace --skip-clean --out Html --output-dir coverage
The HTML coverage report will be generated in the coverage directory.
This project is licensed under the MIT License - see the LICENSE file for details.