determs 0.1.0

Deterministic replay & proof engine for verifiable automated decisions — capture, verify, and replay records anyone can check. AI agents are the first profile.
Documentation
pub mod capsule;
pub mod engine;
pub mod hash;
pub mod json;
pub mod profiles;
pub mod value;
pub mod vdr;

pub use capsule::{
    Capsule, ExecutionOutput, ExecutionStatus, FieldSpec, Manifest, Problem, ProblemSeverity,
    SchemaNode,
};
pub use engine::{
    brief_manifest_value, digest_value, execute_capsule, list_manifests, manifest_for,
    ExecutionRecord, Receipt,
};
pub use hash::{sha256, Digest, Sha256};
pub use json::{parse as parse_json, to_canonical_string, to_pretty_string, JsonError};
pub use value::Value;
pub use vdr::{build_record, verify_record, VdrError, VerifyReport, AGENT_CAPSULE_ID};