trust-tasks-rs 0.1.1

Reference Rust library for the Trust Tasks framework — transport-agnostic, JSON-based descriptions of verifiable work between parties.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Helpers for spec-handler policy checks that are easy to get wrong
//! and worth centralising.
//!
//! Each submodule corresponds to a *Trust Task specification* family and
//! supplies one or more pure functions a maintainer can call from inside
//! their handler. The functions are deliberately generic over the
//! consumer's entry type — webvh-flavoured `AclEntry`s carrying ecosystem
//! `ext` fields work without conversion.
//!
//! This module is hand-written and sits outside the codegen tree so it
//! survives `cargo run -p trust-tasks-codegen` without further plumbing.

pub mod acl;