sectorsync_core/lib.rs
1//! Core types and runtime primitives for `SectorSync`.
2
3#![forbid(unsafe_code)]
4
5pub mod barrier;
6pub mod command;
7pub mod component;
8pub mod entity;
9pub mod event;
10pub mod gateway;
11pub mod handoff;
12pub mod hotspot;
13pub mod ids;
14pub mod interest;
15pub mod policy;
16pub mod prelude;
17pub mod replication;
18pub mod snapshot;
19pub mod spatial;
20pub mod spatial_index;
21pub mod station;