mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-13 05:49:57 +02:00
17 lines
472 B
Rust
17 lines
472 B
Rust
//! Saved-device mutual-consent relationships.
|
|
//!
|
|
//! Pending outgoing/incoming states, directional grants bound to relationship
|
|
//! generation, and Saved only after mutual acknowledgement.
|
|
|
|
mod crypto;
|
|
mod lifecycle;
|
|
mod protocol;
|
|
mod service;
|
|
mod store;
|
|
|
|
pub(crate) use protocol::{RelationshipProtocol, WireProof};
|
|
pub(crate) use service::DeviceRelationshipService;
|
|
pub(crate) use store::DeviceRelationshipStore;
|
|
#[cfg(test)]
|
|
pub(crate) use store::GenerationTombstone;
|