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 guards;
14pub mod idempotency;
15pub mod identifier;
16pub mod integrity;
17pub mod outbox_store;
18pub mod pagination;
19pub mod secure_file;
20pub mod seed_store;
21#[cfg(feature = "setup")]
22pub mod setup;
23pub mod store;
24pub mod telemetry;
25pub mod trust_task;
26pub mod vault;