| Crates.io | crabscore-report |
| lib.rs | crabscore-report |
| version | 0.1.1 |
| created_at | 2025-07-12 20:18:51.573921+00 |
| updated_at | 2025-07-12 21:42:07.260915+00 |
| description | Report generation and web dashboard for CrabScore - The Rust Efficiency Standard |
| homepage | https://github.com/timarocks/crabscore |
| repository | https://github.com/timarocks/crabscore |
| max_upload_size | |
| id | 1749649 |
| size | 968,448 |
Report generation and web dashboard for CrabScore - The Rust Efficiency Standard.
Beautiful report generation with multiple output formats including JSON, HTML, and live web dashboards powered by Axum.
use crabscore_report::{generator, web};
// Generate static reports
let json = generator::generate_json(&score);
let html = generator::generate_html(&score);
// Serve live dashboard
let addr = ([0, 0, 0, 0], 8080).into();
web::serve(score, addr).await?;
[dependencies]
crabscore-report = "0.1.0"
Licensed under Apache-2.0. See LICENSE for details.