commit 7d268b511c64087b812b324beb8f22f0e55cd1a3 parent 8073e67a82ad8dee2b26c8a3b22d69826b9fc6ff Author: Christian Grothoff <christian@grothoff.org> Date: Sun, 24 Jan 2016 15:17:01 +0100 illustration of Taler software architecture Diffstat:
| A | images/dependencies.dot | | | 33 | +++++++++++++++++++++++++++++++++ |
1 file changed, 33 insertions(+), 0 deletions(-)
diff --git a/images/dependencies.dot b/images/dependencies.dot @@ -0,0 +1,33 @@ +digraph dependencies { +splines = true; + + Mint [shape=house]; + Mint -> libmicrohttpd; + Mint -> libtalerutil; + Mint -> libtalermintdb; + libtalerutil -> libgnunetutil; + libgnunetutil -> libunistring; + libmicrohttpd -> libgnutls; + libgnunetutil -> libgcrypt; + libgnutls -> libnettle; + Mint -> libjansson; + libtalermintdb -> libtalerpq; + libtalerpq -> libpq; + libpq -> Postgres [shape=dashed]; + + Postgres [shape=house]; + + Auditor [shape=house]; + Auditor -> libtalerutil; + Auditor -> libtalermintdb; + + Wallet [shape=house]; + Wallet -> libtalerutil; + + Merchant [shape=house]; + Merchant -> libmicrohttpd; + Merchant -> libjansson; + Merchant -> libtalerutil; + Merchant -> libtalerpq; + +}