sopsy 1.3.3

Public/private individual key encryption for repo secrets with biometrics support and explicit approval of who can decrypt. In other words — the missing good UX for SOPS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Command implementations.
//!
//! Each submodule exposes a `run(...)` entry point invoked by
//! [`crate::run`]. With the exception of [`doctor`] (which performs real tool
//! probing), the commands are **stubs** that print a clear "not yet implemented"
//! notice through the [`crate::ui::Ui`] layer and return `Ok(())`. Each carries
//! a `//! TODO` contract describing the behavior the next phase must implement.

pub mod approve;
pub mod check;
pub mod completion;
pub mod deps;
pub mod doctor;
pub mod edit;
pub mod init;
pub mod join;
pub mod recipient;
pub mod secrets;