From 108d85ac883a2f8eb8b1271b74e8facc23102268 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 21 Oct 2019 01:59:17 +0200 Subject: Add `ROADMAP` --- docs/crates_graph.dot | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/crates_graph.dot (limited to 'docs/crates_graph.dot') diff --git a/docs/crates_graph.dot b/docs/crates_graph.dot new file mode 100644 index 00000000..85e375d0 --- /dev/null +++ b/docs/crates_graph.dot @@ -0,0 +1,12 @@ +digraph G { + "iced_core" -> "iced_native" + "iced_core" -> "iced_web" + "iced_native" -> "iced_wgpu" + "iced_native" -> "iced_winit" + "iced_web" -> "iced" + "iced_wgpu" -> "iced" + "iced_winit" -> "iced" + + node[shape=box]; + "iced" -> "cross-platform application" +} -- cgit