manatee 0.4.0

Headless compound graph layout algorithms (COSE/FCoSE ports).
Documentation
1
2
3
4
5
6
7
#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("graph contains an edge with a missing endpoint: {edge_id}")]
    MissingEndpoint { edge_id: String },
}

pub type Result<T> = std::result::Result<T, Error>;