vello/examples/with_bevy/Cargo.toml
Bruce Mitchener 3b3d369508 with_bevy: Update to bevy 0.11 release.
* Use `add_plugins` as `add_plugin` is deprecated.
* Use `world.resource` instead of unwrapping `world.get_resource`
  as it gives better error messages.
* Add the `VelloRenderer` to the render app in the `finish` method
  as the `Renderer` is async and may not have initialized by the
  time that the Vello plugin is being set up.
2023-07-10 13:06:41 +07:00

15 lines
350 B
TOML

[package]
name = "with_bevy"
description = "Example of using Vello in a Bevy application"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = "0.11"
vello = { path = "../../" }