communitas-core 0.12.4

Core business logic for Communitas - PQC collaboration with virtual disks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Storage module for Communitas core
//!
//! This module provides storage-related functionality including
//! local storage and metrics.

pub mod local_storage;
pub mod metrics;
// pub mod reed_solomon_manager; // Removed: FEC not used in RC1b (gossip-based architecture)

// Re-export commonly used types
pub use local_storage::*;
// pub use reed_solomon_manager::*; // Removed: FEC not used in RC1b