auths-sdk 0.1.16

Application services layer for Auths identity operations
Documentation
//! Identity domain services
//!
//! Provisions, rotates, and manages developer, CI, and agent identities.

/// Identity errors
pub mod error;
/// Local signer-identity resolution (root + delegate machines)
pub mod local;
/// Identity provisioning workflows
pub mod provision;
/// Identity registration on remote registries
pub mod registration;
/// Identity-replacement authorization (`init --force` requires explicit confirmation)
pub mod replace_policy;
/// Identity key rotation
pub mod rotation;
/// Identity services
pub mod service;
/// Apply a co-authored shared-KEL rotation received from a paired device
pub mod shared_rot;
/// Identity types and configuration
pub mod types;
/// Witness-set declaration anchored in the identity's KEL
pub mod witness_set;

pub use error::*;
pub use types::*;