From 11798dcc03e79c66f2a411d7b47691170574641a Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 26 Nov 2020 07:22:03 +0100 Subject: Update graphs in crate docs --- core/src/lib.rs | 4 ++-- docs/graphs/core.png | Bin 13172 -> 0 bytes docs/graphs/web.png | Bin 11717 -> 0 bytes docs/graphs/wgpu.png | Bin 16570 -> 0 bytes docs/graphs/winit.png | Bin 15892 -> 0 bytes futures/src/lib.rs | 2 ++ glow/src/lib.rs | 2 ++ glutin/src/lib.rs | 2 ++ graphics/src/lib.rs | 2 ++ native/src/lib.rs | 2 +- style/src/lib.rs | 2 ++ web/src/lib.rs | 2 -- wgpu/src/lib.rs | 2 +- winit/src/lib.rs | 2 +- 14 files changed, 15 insertions(+), 7 deletions(-) delete mode 100644 docs/graphs/core.png delete mode 100644 docs/graphs/web.png delete mode 100644 docs/graphs/wgpu.png delete mode 100644 docs/graphs/winit.png diff --git a/core/src/lib.rs b/core/src/lib.rs index 6b9e612e..f2d21a5f 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -1,11 +1,11 @@ //! The core library of [Iced]. //! -//! ![`iced_core` crate graph](https://github.com/hecrj/iced/blob/cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e/docs/graphs/core.png?raw=true) -//! //! This library holds basic types that can be reused and re-exported in //! different runtime implementations. For instance, both [`iced_native`] and //! [`iced_web`] are built on top of `iced_core`. //! +//! ![The foundations of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/foundations.png?raw=true) +//! //! [Iced]: https://github.com/hecrj/iced //! [`iced_native`]: https://github.com/hecrj/iced/tree/master/native //! [`iced_web`]: https://github.com/hecrj/iced/tree/master/web diff --git a/docs/graphs/core.png b/docs/graphs/core.png deleted file mode 100644 index 0b14ab6c..00000000 Binary files a/docs/graphs/core.png and /dev/null differ diff --git a/docs/graphs/web.png b/docs/graphs/web.png deleted file mode 100644 index e6a1a5f6..00000000 Binary files a/docs/graphs/web.png and /dev/null differ diff --git a/docs/graphs/wgpu.png b/docs/graphs/wgpu.png deleted file mode 100644 index 4831caba..00000000 Binary files a/docs/graphs/wgpu.png and /dev/null differ diff --git a/docs/graphs/winit.png b/docs/graphs/winit.png deleted file mode 100644 index 1c028b29..00000000 Binary files a/docs/graphs/winit.png and /dev/null differ diff --git a/futures/src/lib.rs b/futures/src/lib.rs index f46db449..c7c6fd3a 100644 --- a/futures/src/lib.rs +++ b/futures/src/lib.rs @@ -1,4 +1,6 @@ //! Asynchronous tasks for GUI programming, inspired by Elm. +//! +//! ![The foundations of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/foundations.png?raw=true) #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![deny(unused_results)] diff --git a/glow/src/lib.rs b/glow/src/lib.rs index 5011da8e..98faf24c 100644 --- a/glow/src/lib.rs +++ b/glow/src/lib.rs @@ -1,5 +1,7 @@ //! A [`glow`] renderer for [`iced_native`]. //! +//! ![The native path of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/native.png?raw=true) +//! //! [`glow`]: https://github.com/grovesNL/glow //! [`iced_native`]: https://github.com/hecrj/iced/tree/master/native #![deny(missing_docs)] diff --git a/glutin/src/lib.rs b/glutin/src/lib.rs index 49bc2a33..f2c0102a 100644 --- a/glutin/src/lib.rs +++ b/glutin/src/lib.rs @@ -1,5 +1,7 @@ //! A windowing shell for [`iced`], on top of [`glutin`]. //! +//! ![The native path of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/native.png?raw=true) +//! //! [`iced`]: https://github.com/hecrj/iced //! [`glutin`]: https://github.com/rust-windowing/glutin #![deny(missing_docs)] diff --git a/graphics/src/lib.rs b/graphics/src/lib.rs index a3bd5364..14388653 100644 --- a/graphics/src/lib.rs +++ b/graphics/src/lib.rs @@ -1,6 +1,8 @@ //! A bunch of backend-agnostic types that can be leveraged to build a renderer //! for [`iced`]. //! +//! ![The native path of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/native.png?raw=true) +//! //! [`iced`]: https://github.com/hecrj/iced #![deny(missing_docs)] #![deny(missing_debug_implementations)] diff --git a/native/src/lib.rs b/native/src/lib.rs index ff355aa7..f9a99c48 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -1,6 +1,6 @@ //! A renderer-agnostic native GUI runtime. //! -//! ![`iced_native` crate graph](https://github.com/hecrj/iced/blob/cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e/docs/graphs/native.png?raw=true) +//! ![The native path of the Iced ecosystem](https://github.com/hecrj/iced/raw/improvement/update-ecosystem-and-roadmap/docs/graphs/native.png) //! //! `iced_native` takes [`iced_core`] and builds a native runtime on top of it, //! featuring: diff --git a/style/src/lib.rs b/style/src/lib.rs index 3d23d990..7e0a9f49 100644 --- a/style/src/lib.rs +++ b/style/src/lib.rs @@ -2,6 +2,8 @@ //! //! It contains a set of styles and stylesheets for most of the built-in //! widgets. +//! +//! ![The foundations of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/foundations.png?raw=true) pub use iced_core::{Background, Color}; pub mod button; diff --git a/web/src/lib.rs b/web/src/lib.rs index 3b613353..ab3e9d6a 100644 --- a/web/src/lib.rs +++ b/web/src/lib.rs @@ -1,7 +1,5 @@ //! A web runtime for Iced, targetting the DOM. //! -//! ![`iced_web` crate graph](https://github.com/hecrj/iced/blob/cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e/docs/graphs/web.png?raw=true) -//! //! `iced_web` takes [`iced_core`] and builds a WebAssembly runtime on top. It //! achieves this by introducing a `Widget` trait that can be used to produce //! VDOM nodes. diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index 5f44dd91..a4c2ac0e 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -1,6 +1,6 @@ //! A [`wgpu`] renderer for [`iced_native`]. //! -//! ![`iced_wgpu` crate graph](https://github.com/hecrj/iced/blob/cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e/docs/graphs/wgpu.png?raw=true) +//! ![The native path of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/native.png?raw=true) //! //! For now, it is the default renderer of [Iced] in native platforms. //! diff --git a/winit/src/lib.rs b/winit/src/lib.rs index dfee99cb..c9f324dd 100644 --- a/winit/src/lib.rs +++ b/winit/src/lib.rs @@ -1,6 +1,6 @@ //! A windowing shell for Iced, on top of [`winit`]. //! -//! ![`iced_winit` crate graph](https://github.com/hecrj/iced/blob/cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e/docs/graphs/winit.png?raw=true) +//! ![The native path of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/native.png?raw=true) //! //! `iced_winit` offers some convenient abstractions on top of [`iced_native`] //! to quickstart development when using [`winit`]. -- cgit