swactor/crates/simulation/src/lib.rs
zacheryasc 03d40c42b6 refactor: consolidate crates (#39)
Crates continued to grow in number, but most are still quite small and feature specific. This refactor consolidates them.


Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-13 17:34:01 +00:00

11 lines
185 B
Rust

pub mod topology;
pub mod config;
pub mod trace;
pub mod properties;
pub mod distribution;
#[cfg(feature = "gossip")]
pub mod gossip;
#[cfg(feature = "dashboard")]
pub mod dashboard;