vta-cli-common 0.24.0

Shared CLI command handlers and rendering helpers for VTA CLIs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod commands;
// Waiting out a `requireConsent` gate. Shared with the offline `vta` binary so
// both CLIs answer an approval question the same way.
pub mod consent;
// Answering a consent request as an approver — `pnm consent` and `cnm consent`.
pub mod consent_approve;
// Terminal rendering for DIDs + their display names. The CLI layer over
// `vta_sdk::display_name`.
pub mod display;
pub mod duration;
pub mod local_keygen;
// A DID as a QR code, for the terminal or an SVG file (`pnm vta qr`).
pub mod qr;
pub mod render;
pub mod sealed_consumer;
pub mod sealed_producer;
pub mod secure_file;