-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 969 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (28 loc) · 969 Bytes
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.17.0"
authors = ["David Cristofaro <david@dtcristo.com>"]
edition = "2024"
rust-version = "1.95"
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.19", default-features = false, features = ["bevy_log", "bevy_winit"] }
pixels = "0.17"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.3", features = ["wasm_js"] }
[workspace]
members = ["examples/*"]
exclude = ["examples/public"]