forked from mbrea-c/bevy_firework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 849 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_firework"
version = "0.3.0"
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mbrea-c/bevy_firework"
description = "CPU-driven, batch-rendered particle system for the Bevy game engine"
keywords = ["bevy", "gamedev", "particles", "graphics"]
resolver = "2"
[dependencies]
bevy = "0.13"
bytemuck = "1.14.3"
rand = "0.8.5"
bevy_utilitarian = "0.4"
bevy_xpbd_3d = { version = "0.4", features = ["serialize"], optional = true }
serde = { version = "1.0.197", features = ["derive"] }
[features]
default = ["physics_xpbd"]
physics_xpbd = ["dep:bevy_xpbd_3d"]
[[example]]
name = "collision"
required-features = ["physics_xpbd"]
[[example]]
name = "stress_test"
required-features = ["physics_xpbd"]
[[example]]
name = "stress_test_collision"
required-features = ["physics_xpbd"]