Skip to main content

vti_common/
lib.rs

1pub mod acl;
2pub mod audit;
3pub mod auth;
4/// Client-side wire helpers for the capability Trust Task families —
5/// re-exported from the `trust-tasks-capability-client` crate so both this
6/// (the hook producer) and out-of-repo consumers (management UIs) share one
7/// contract-tested implementation.
8pub use trust_tasks_capability_client as capability_client;
9pub mod config;
10pub mod consent;
11pub mod context_path;
12pub mod error;
13pub mod idempotency;
14pub mod identifier;
15pub mod integrity;
16pub mod outbox_store;
17pub mod pagination;
18pub mod secure_file;
19pub mod seed_store;
20#[cfg(feature = "setup")]
21pub mod setup;
22pub mod store;
23pub mod telemetry;
24pub mod trust_task;
25pub mod vault;