par_dfs/lib.rs
1//! Parallel, serial, and async DFS and BFS traversal iterators.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4
5#[cfg(feature = "sync")]
6#[cfg_attr(docsrs, doc(cfg(feature = "sync")))]
7pub mod sync;
8
9#[cfg(feature = "async")]
10#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
11pub mod r#async;
12
13mod utils;