auths-sdk 0.1.16

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

#[cfg(feature = "backend-git")]
pub use auths_id::storage::GitWitnessReceiptLookup;
#[cfg(feature = "backend-git")]
pub use auths_storage::git::{
    GitAttestationStorage, GitIdentityStorage, GitRegistryBackend, KelAppendOutcome,
    PerPrefixKelStore, RegistryAttestationStorage, RegistryConfig, RegistryIdentityStorage,
    kel_ref,
};