//! Graph module for deadlock detection
//!
//! This module contains graph implementations used for deadlock detection:
//! - Wait-for graph: tracks which threads are waiting for which other threads
//! - Lock order graph: tracks the order in which locks are acquired (optional feature)
pub use LockOrderGraph;
pub use WaitForGraph;