From 6f2599aa4feb0f104397445862e19d8f35273e3c Mon Sep 17 00:00:00 2001 From: Piotr Siuszko Date: Thu, 29 Feb 2024 16:35:31 +0100 Subject: [PATCH] Deps and doc test fix --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 42c6098..7831bfb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0" [dependencies.bevy] version = "0.13" default-features = false -features = ["bevy_ui", "bevy_asset", "bevy_text", "bevy_winit"] +features = ["bevy_ui", "bevy_asset", "bevy_text"] [dev-dependencies.bevy] version = "0.13" diff --git a/src/lib.rs b/src/lib.rs index b1470be..3695f34 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,7 @@ use bevy::{ /// # Example /// ``` /// use bevy::prelude::*; -/// use bevy_simple_scroll_view::; +/// use bevy_simple_scroll_view::*; /// /// App::new() /// .add_plugins((DefaultPlugins,ScrollViewPlugin))