diff options
author | 2020-11-26 07:22:03 +0100 | |
---|---|---|
committer | 2020-11-26 07:22:03 +0100 | |
commit | 11798dcc03e79c66f2a411d7b47691170574641a (patch) | |
tree | 6669081f001abbf31a804c0eb917c848b67119c9 | |
parent | 0525d76ff94e828b7b21634fa94a747022001c83 (diff) | |
download | iced-11798dcc03e79c66f2a411d7b47691170574641a.tar.gz iced-11798dcc03e79c66f2a411d7b47691170574641a.tar.bz2 iced-11798dcc03e79c66f2a411d7b47691170574641a.zip |
Update graphs in crate docs
-rw-r--r-- | core/src/lib.rs | 4 | ||||
-rw-r--r-- | docs/graphs/core.png | bin | 13172 -> 0 bytes | |||
-rw-r--r-- | docs/graphs/web.png | bin | 11717 -> 0 bytes | |||
-rw-r--r-- | docs/graphs/wgpu.png | bin | 16570 -> 0 bytes | |||
-rw-r--r-- | docs/graphs/winit.png | bin | 15892 -> 0 bytes | |||
-rw-r--r-- | futures/src/lib.rs | 2 | ||||
-rw-r--r-- | glow/src/lib.rs | 2 | ||||
-rw-r--r-- | glutin/src/lib.rs | 2 | ||||
-rw-r--r-- | graphics/src/lib.rs | 2 | ||||
-rw-r--r-- | native/src/lib.rs | 2 | ||||
-rw-r--r-- | style/src/lib.rs | 2 | ||||
-rw-r--r-- | web/src/lib.rs | 2 | ||||
-rw-r--r-- | wgpu/src/lib.rs | 2 | ||||
-rw-r--r-- | winit/src/lib.rs | 2 |
14 files changed, 15 insertions, 7 deletions
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]. //! -//!  -//! //! 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`. //! +//!  +//! //! [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 Binary files differdeleted file mode 100644 index 0b14ab6c..00000000 --- a/docs/graphs/core.png +++ /dev/null diff --git a/docs/graphs/web.png b/docs/graphs/web.png Binary files differdeleted file mode 100644 index e6a1a5f6..00000000 --- a/docs/graphs/web.png +++ /dev/null diff --git a/docs/graphs/wgpu.png b/docs/graphs/wgpu.png Binary files differdeleted file mode 100644 index 4831caba..00000000 --- a/docs/graphs/wgpu.png +++ /dev/null diff --git a/docs/graphs/winit.png b/docs/graphs/winit.png Binary files differdeleted file mode 100644 index 1c028b29..00000000 --- a/docs/graphs/winit.png +++ /dev/null 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. +//! +//!  #![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`]. //! +//!  +//! //! [`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`]. //! +//!  +//! //! [`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`]. //! +//!  +//! //! [`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` 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. +//! +//!  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` 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`]. //! -//!  +//!  //! //! 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` offers some convenient abstractions on top of [`iced_native`] //! to quickstart development when using [`winit`]. |