Skip to main content

continuity_receipt/
lib.rs

1//! Independent Rust verifier for Continuity Receipt bundles (0.1–0.3) and
2//! verification receipts (companion v1).
3//!
4//! This is a second implementation of `continuity_receipt/verify.py` and
5//! `continuity_receipt/verification.py`; the Python implementation in this
6//! repository remains the reference. Verdicts follow the CTQ-aligned
7//! semantics of spec section 7:
8//! `TRUSTED` | `PROVISIONAL` | `INSUFFICIENT_EVIDENCE` | `UNTRUSTED`.
9
10pub mod anchor;
11pub mod canon;
12pub mod didkey;
13pub mod disclose;
14pub mod verification;
15pub mod verify;
16
17pub use verification::{verify_verification_receipt, VerificationReceiptResult};
18pub use verify::{verify_bundle, VerifyResult};