Skip to content
Snippets Groups Projects
Commit 9dbe7813 authored by NiseVoid's avatar NiseVoid
Browse files

Use release version of bevy_svg

parent 7e622df8
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ members = ["kayak_ui_macros", "kayak_font"]
[dependencies]
bevy = { version = "0.11", default-features = false, features = ["bevy_render", "bevy_asset", "bevy_winit", "bevy_core_pipeline"] }
bevy_svg = { version="0.10.1", default-features = false }
bevy_svg = { version="0.11", default-features = false }
bitflags = "1.3.2"
bytemuck = "1.12"
dashmap = "5.4"
......@@ -49,6 +49,3 @@ path = "examples/todo/todo.rs"
[package.metadata.docs.rs]
features = ["bevy/x11"]
[patch.crates-io]
bevy_svg = {git = "https://github.com/NiseVoid/bevy_svg", branch="bevy_svg"}
......@@ -77,10 +77,12 @@ type WidgetSystems = HashMap<
///
/// fn main() {
/// App::new()
/// .add_plugins(DefaultPlugins)
/// .add_plugin(ContextPlugin)
/// .add_plugin(KayakWidgets)
/// .add_startup_system(setup);
/// .add_plugins((
/// DefaultPlugins,
/// KayakContextPlugin,
/// KayakWidgets
/// ))
/// .add_systems(Startup, setup);
/// }
/// ```
#[derive(Component)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment