forked from dtcristo/bevy_pixels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 948 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "bevy_pixels"
description = "Bevy plugin that uses Pixels (a tiny pixel buffer) for rendering"
version = "0.13.0"
authors = ["David Cristofaro <david@dtcristo.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/dtcristo/bevy_pixels"
keywords = ["bevy", "pixels", "graphics", "2d", "framebuffer"]
categories = ["game-engines", "graphics", "rendering"]
exclude = ["images/**/*"]
[features]
default = ["render", "x11"]
# Enable default render system.
render = []
# Display server protocol support (X11 is enabled by default).
wayland = ["bevy/wayland"]
x11 = ["bevy/x11"]
[dependencies]
bevy = { version = "0.13", default_features = false, features = ["bevy_winit"] }
winit = { version = "0.29", features = ["rwh_05"] }
pixels = "0.13"
[target.'cfg(target_arch = "wasm32")'.dependencies]
pollster = "0.3"
[workspace]
members = ["examples/*"]
exclude = ["examples/public"]