auths-sdk 0.1.5

Application services layer for Auths identity operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Re-exports of Git storage backend types from `auths-storage`.
//!
//! Gated behind the `backend-git` feature.

#[cfg(feature = "backend-git")]
pub use auths_id::keri::sync::{MergeOutcome, MergedCredentials, MergedKel};
#[cfg(feature = "backend-git")]
pub use auths_id::storage::GitWitnessReceiptLookup;
#[cfg(feature = "backend-git")]
pub use auths_storage::git::{
    GitAttestationStorage, GitIdentityStorage, GitRegistryBackend, PushOutcome,
    RegistryAttestationStorage, RegistryConfig, RegistryIdentityStorage, RegistryPullReport,
    RegistrySyncError, pull_registry, push_registry,
};