summaryrefslogtreecommitdiff
path: root/static/images/dependencies.dot
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-05-06 19:06:56 +0200
committerFlorian Dold <florian@dold.me>2021-05-06 19:06:56 +0200
commit719934275f3c55e958f48ea165280542b49b8f0b (patch)
treeb850ede68a486f2d30849184391c126f613eb7d2 /static/images/dependencies.dot
parent9a6e7c57484e16bdd3f4aa917e6489048fb242d0 (diff)
downloadwww-719934275f3c55e958f48ea165280542b49b8f0b.tar.gz
www-719934275f3c55e958f48ea165280542b49b8f0b.tar.bz2
www-719934275f3c55e958f48ea165280542b49b8f0b.zip
restructure
Diffstat (limited to 'static/images/dependencies.dot')
-rw-r--r--static/images/dependencies.dot33
1 files changed, 33 insertions, 0 deletions
diff --git a/static/images/dependencies.dot b/static/images/dependencies.dot
new file mode 100644
index 00000000..bf5b66e3
--- /dev/null
+++ b/static/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;
+
+}