dot-parser 0.6.1

This library provides a parser for the DOT/Graphviz graph description language, as well as useful functions to transform those graphs.
Documentation
#[test]
fn test_edge_attr() {
    assert!(dot_parser::ast::Graphs::try_from(
        r#"digraph{
                edge [overall_factor=1]
                A
                }
                "#
    )
    .is_ok())
}

#[test]
fn test_id_eq() {
    assert!(dot_parser::ast::Graphs::try_from(
        r#"digraph{
                overall_factor=1
                A
                }
                "#
    )
    .is_ok())
}