auths-id 0.1.2

Multi-device identity and attestation crate for Auths
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Port traits for hexagonal architecture.
//!
//! This module is the canonical public API surface for all traits that
//! storage backends (e.g., `auths-storage`) must implement. Consumers
//! import from `auths_id::ports::*` rather than from deep internal paths.
//!
//! ## Dependency direction
//!
//! ```text
//! auths-storage  ──depends on──▶  auths-id::ports
//! auths-id       (never imports from auths-storage)
//! ```

pub mod registry;
pub mod storage;

pub use registry::*;
pub use storage::*;