summaryrefslogtreecommitdiffstats
path: root/native/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-05 03:58:23 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-05 03:58:23 +0200
commita90f7fcb987f667a80038a5e72f379abbd59d932 (patch)
tree01e687b72100a259060bbc46c5b3311e84353dd5 /native/src/lib.rs
parenta7d11944039a1b5ea5b72256e8d15367d99e6010 (diff)
downloadiced-a90f7fcb987f667a80038a5e72f379abbd59d932.tar.gz
iced-a90f7fcb987f667a80038a5e72f379abbd59d932.tar.bz2
iced-a90f7fcb987f667a80038a5e72f379abbd59d932.zip
Move `MouseCursor` to `iced_wgpu`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r--native/src/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index f6b6f807..6067f49d 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -77,8 +77,7 @@
//! #
//! # mod iced_wgpu {
//! # use iced_native::{
-//! # button, text, Button, Text,
-//! # MouseCursor, Node, Point, Rectangle, Style, Color, Layout
+//! # button, text, Button, Text, Node, Point, Rectangle, Style, Color, Layout
//! # };
//! #
//! # pub struct Renderer {}
@@ -207,7 +206,6 @@ mod element;
mod event;
mod hasher;
mod layout;
-mod mouse_cursor;
mod node;
mod style;
mod user_interface;
@@ -223,7 +221,6 @@ pub use element::Element;
pub use event::Event;
pub use hasher::Hasher;
pub use layout::Layout;
-pub use mouse_cursor::MouseCursor;
pub use node::Node;
pub use renderer::Renderer;
pub use style::Style;