mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-03-28 07:03:43 +00:00
* move to “crates” style folder * Update workspace * clear crate names * Rename crate folders based on feedback * Use workspace dependencies instead of paths * Move updated files from core
16 lines
410 B
Rust
16 lines
410 B
Rust
//! Storage module for persisting ratchet state.
|
|
//!
|
|
//! This module provides storage implementations for the double ratchet state,
|
|
//! built on top of the shared `storage` crate.
|
|
|
|
mod db;
|
|
mod errors;
|
|
mod session;
|
|
mod types;
|
|
|
|
pub use db::RatchetStorage;
|
|
pub use errors::SessionError;
|
|
pub use session::RatchetSession;
|
|
pub use storage::{SqliteDb, StorageConfig, StorageError};
|
|
pub use types::RatchetStateRecord;
|