subspace_data_retrieval/
lib.rs

1//! Fetching data from the archived history of the Subspace Distributed Storage Network.
2
3#![feature(exact_size_is_empty, let_chains, trusted_len)]
4
5pub mod object_fetcher;
6pub mod piece_fetcher;
7pub mod piece_getter;
8pub mod segment_downloading;