dugong 0.6.0

Dagre-compatible graph layout algorithms (port of dagrejs/dagre).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Dagre layout pipelines.
//!
//! We keep the crate-level API as `dugong::layout(...)`, so this module is intentionally not
//! named `layout` to avoid a Rust item-name conflict.

mod minimal;

pub use minimal::layout;

#[cfg(feature = "dagreish")]
mod compound;
#[cfg(feature = "dagreish")]
mod dagreish;
#[cfg(feature = "dagreish")]
pub use dagreish::layout_dagreish;