exochain-dag-db-graph 0.2.0-beta

EXOCHAIN DAG DB graph and layered organization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Graph and layered organization for DAG DB.
//!
//! Facade removal is complete; this crate owns memory graph invariants, layered
//! placement, hygiene, and layer policy code. Downstream compatibility uses
//! explicit bridges such as `exo_api::dagdb`.

#![cfg_attr(test, allow(clippy::expect_used, clippy::unwrap_used))]

pub mod layer_creation_policy;
pub mod layered_graph;
pub mod layered_hygiene;
pub mod layered_placement;