trust-tasks-rs 0.1.0

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
//! Reference [`TransportHandler`](crate::TransportHandler) implementations.
//!
//! These are not full transport bindings — they exist to make the trait
//! contract testable end-to-end without pulling in HTTP or DIDComm
//! dependencies. A real binding (REST + mTLS, DIDComm, TSP, ...) lives in a
//! separate crate and implements the trait the same way.

mod in_memory;
mod noop;

pub use in_memory::InMemoryHandler;
pub use noop::NoopHandler;