1 unstable release

0.1.0 Nov 2, 2021

#4 in #graphviz-dot-language

Download history 372/week @ 2022-11-26 655/week @ 2022-12-03 576/week @ 2022-12-10 755/week @ 2022-12-17 383/week @ 2022-12-24 647/week @ 2022-12-31 739/week @ 2023-01-07 1174/week @ 2023-01-14 1056/week @ 2023-01-21 957/week @ 2023-01-28 644/week @ 2023-02-04 798/week @ 2023-02-11 750/week @ 2023-02-18 673/week @ 2023-02-25 555/week @ 2023-03-04 659/week @ 2023-03-11

2,795 downloads per month
Used in 13 crates (6 directly)

Custom license

7KB
139 lines

The structures of dot language

The set of components of the graphviz dot notation endeavouring to follow comparatively close to the language notation

Description:

    strict digraph t {           <= graph
        aa[color=green]          <= node aa and attributes in [..]
        subgraph v {             <= subgraph v
	     aa[shape=square]
	     subgraph vv{a2 -> b2}
	     aaa[color=red]
	     aaa -> subgraph { d -> aaa}  <= subgraph id is anon
        }
       aa -> be -> d -> aaa       <= type of the edge is chain
   }

No runtime deps