diff options
author | Silas Bartha <[email protected]> | 2024-12-10 16:06:06 -0500 |
---|---|---|
committer | Silas Bartha <[email protected]> | 2024-12-10 16:06:06 -0500 |
commit | 3c229ff55b3ba1b618e00fb48f2b350709a58c02 (patch) | |
tree | d611701543a91b53399cf8029b124a725ccb1548 /Cargo.toml | |
parent | 3c711f2012c865c2a17077b2980c53437c4812bc (diff) |
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,15 +1,15 @@ [package] name = "bevy_headless_render" -version = "0.1.2" +version = "0.2.0" edition = "2021" description = "A plugin for the bevy engine which enables headless rendering to an image for use in the main world." license = "0BSD OR MIT OR Apache-2.0" [dependencies] -oneshot = "0.1.6" -pollster = "0.3.0" +oneshot = "0.1" +pollster = "0.4" [dependencies.bevy] -version = "0.14" +version = "0.15" default-features = false -features = ["bevy_render", "bevy_asset"] +features = ["bevy_render", "bevy_asset", "png", "bevy_pbr"] |