diff options
Diffstat (limited to 'images/dependencies.dot')
-rw-r--r-- | images/dependencies.dot | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/images/dependencies.dot b/images/dependencies.dot new file mode 100644 index 00000000..bf5b66e3 --- /dev/null +++ b/images/dependencies.dot | |||
@@ -0,0 +1,33 @@ | |||
1 | digraph dependencies { | ||
2 | splines = true; | ||
3 | |||
4 | Mint [shape=house]; | ||
5 | Mint -> libmicrohttpd; | ||
6 | Mint -> libtalerutil; | ||
7 | Mint -> libtalermintdb; | ||
8 | libtalerutil -> libgnunetutil; | ||
9 | libgnunetutil -> libunistring; | ||
10 | libmicrohttpd -> libgnutls; | ||
11 | libgnunetutil -> libgcrypt; | ||
12 | libgnutls -> libnettle; | ||
13 | Mint -> libjansson; | ||
14 | libtalermintdb -> libtalerpq; | ||
15 | libtalerpq -> libpq; | ||
16 | libpq -> Postgres [shape=dashed]; | ||
17 | |||
18 | Postgres [shape=house]; | ||
19 | |||
20 | Auditor [shape=house]; | ||
21 | Auditor -> libtalerutil; | ||
22 | Auditor -> libtalermintdb; | ||
23 | |||
24 | Wallet [shape=house]; | ||
25 | Wallet -> libtalerutil; | ||
26 | |||
27 | Merchant [shape=house]; | ||
28 | Merchant -> libmicrohttpd; | ||
29 | Merchant -> libjansson; | ||
30 | Merchant -> libtalerutil; | ||
31 | Merchant -> libtalerpq; | ||
32 | |||
33 | } | ||