levi_core/lib.rs
1pub mod crossproject;
2pub mod entities;
3pub mod graph;
4#[cfg(not(target_arch = "wasm32"))]
5pub mod hub;
6pub mod ids;
7pub mod materialize;
8pub mod merkle;
9pub mod rank;
10pub mod resolve;
11
12pub use entities::*;
13
14/// Binaries that receive levi entities over the wire (the hub) must call
15/// this: without any referenced symbol from this crate, the linker drops its
16/// object files — including the inventory registrations for entities,
17/// commands, and sagas.
18pub fn link() {}