diff --git a/Cargo.toml b/Cargo.toml index 7e8844b..68eaa12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,20 +8,20 @@ license = "MIT OR Apache-2.0" name = "bevy_prototype_lyon" readme = "README.md" repository = "https://github.com/Nilirad/bevy_prototype_lyon/" -version = "0.13.0" +version = "0.15.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bevy = { version = "0.15.0", default-features = false, features = [ - "bevy_sprite", - "bevy_render", - "bevy_core_pipeline", - "bevy_asset", +bevy = { version = "0.17.0", default-features = false, features = [ + "bevy_asset", + "bevy_render", + "bevy_sprite_render", + "bevy_log", ] } lyon_tessellation = "1" lyon_algorithms = "1" svgtypes = "0.15" [dev-dependencies] -bevy = "0.15.0" +bevy = "0.17.0" diff --git a/README.md b/README.md index 9c8a41e..aa02f04 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ The following table shows the latest version of `bevy_prototype_lyon` that suppo |bevy|bevy_prototype_lyon|license| |---|---|---| +|0.17|0.15|MIT/Apache 2.0| |0.15|0.13|MIT/Apache 2.0| |0.14|0.12|MIT/Apache 2.0| |0.13|0.11|MIT/Apache 2.0| diff --git a/deny.toml b/deny.toml index ddb2e20..fd9573d 100644 --- a/deny.toml +++ b/deny.toml @@ -23,7 +23,10 @@ allow = [ "CC0-1.0", ] exceptions = [ - { name = "unicode-ident", allow = ["Unicode-DFS-2016", "Unicode-3.0"] }, + { name = "unicode-ident", allow = [ + "Unicode-DFS-2016", + "Unicode-3.0", + ] }, ] [[licenses.clarify]] @@ -32,7 +35,7 @@ license-files = [] name = "stretch" [bans] -multiple-versions = "allow" +multiple-versions = "allow" wildcards = "allow" [sources] diff --git a/examples/dynamic_shape.rs b/examples/dynamic_shape.rs index f81bd04..bf18695 100644 --- a/examples/dynamic_shape.rs +++ b/examples/dynamic_shape.rs @@ -23,7 +23,7 @@ fn rotate_shape_system(mut query: Query<&mut Transform, With>, tim } } -fn redraw_shape(mut query: Query<&mut Shape, With>, time: Res