File: crate_deps.dot

package info (click to toggle)
tiny 0.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,780 kB
  • sloc: makefile: 29
file content (38 lines) | stat: -rw-r--r-- 866 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Describes dependencies between tiny crates. Used in ARCHITECTURE.md.

digraph mygraph {

    node [shape=box, fontname="Jetbrains Mono Medium"];

    "tiny"
    "libtiny_client"
    "libtiny_common"
    "libtiny_logger"
    "libtiny_tui"
    "libtiny_wire"
    "term_input"
    "term_input_macros"
    "termbox_simple"

    "tiny" -> "libtiny_client"
    "tiny" -> "libtiny_common"
    "tiny" -> "libtiny_logger"
    "tiny" -> "libtiny_tui"
    "tiny" -> "libtiny_wire"

    "libtiny_client" -> "libtiny_common"
    "libtiny_client" -> "libtiny_wire"

    "libtiny_logger" -> "libtiny_common"
    "libtiny_logger" -> "libtiny_wire"

    "libtiny_tui" -> "libtiny_common"
    "libtiny_tui" -> "libtiny_wire"
    "libtiny_tui" -> "term_input"
    "libtiny_tui" -> "termbox_simple"

    "libtiny_wire" -> "libtiny_common"

    "term_input" -> "term_input_macros"

}