did-git-sign 0.4.12

Git commit signing proxy using DID Ed25519 keys via VTA
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Library entry point for `did-git-sign`.
//!
//! The binary at `src/main.rs` is a thin wrapper around the modules below.
//! These modules are also reusable from other workspace crates — e.g.
//! `openvtc` calls [`init::install`] from its setup wizard so it can
//! configure git signing for a freshly-provisioned persona without
//! re-running the VTA bootstrap.

pub mod config;
pub mod init;
pub mod names;
pub mod policy;
pub mod sign;
pub mod vta;