Skip to main content

continuity_receipt/
lib.rs

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