The bead description mentioned compile errors in hash.rs from API drift, but those errors were either already fixed or misattributed. The API usage was already correct: - compute_fingerprint already takes 3 arguments with source - len() already propagates Result with ? - read_at method already used correctly - Catalog fields accessed via trailer correctly Only cleanup: removed unused std::fs::File and std::io imports. Verification: notes/bf-4mkhv.md
24 lines
623 B
HTML
24 lines
623 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>pdftract inspector</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<header>
|
|
<h1>pdftract inspector</h1>
|
|
<p>PDF extraction debug viewer</p>
|
|
</header>
|
|
<main id="viewer">
|
|
<p class="placeholder">Loading PDF...</p>
|
|
</main>
|
|
<footer>
|
|
<p>pdftract inspector UI (stub)</p>
|
|
</footer>
|
|
</div>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|