dugout 0.1.6

Git-native secrets manager for development teams, written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
/// Result of a sync operation.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SyncResult {
    /// Number of secrets re-encrypted
    pub secrets: usize,
    /// Number of recipients in the current set
    pub recipients: usize,
    /// Whether re-encryption was actually needed
    pub was_needed: bool,
}