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 ++++++++++++ docs/crates_graph.png | Bin 0 -> 40251 bytes 2 files changed, 12 insertions(+) create mode 100644 docs/crates_graph.dot create mode 100644 docs/crates_graph.png (limited to 'docs') 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" +} diff --git a/docs/crates_graph.png b/docs/crates_graph.png new file mode 100644 index 00000000..d598c1dd Binary files /dev/null and b/docs/crates_graph.png differ -- cgit