-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (19 loc) · 862 Bytes
/
Cargo.toml
File metadata and controls
20 lines (19 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "bevy_millions_ball"
version = "0.1.0"
edition = "2024"
authors = ["AllenPocketGamer <allenpocketwork@gmail.com>"]
description = "A bevy example of high-performance sphere collision detection based on uniform grid partitioning"
repository = "https://github.com/AllenPocketGamer/bevy_millions_ball"
keywords = ["bevy", "plugin", "physics", "collision detection", "uniform grid partitioning"]
readme = "README.md"
[dependencies]
bevy = "0.15.3"
bevy_radix_sort = "0.15.0"
bevy_wgsl_utils = { git = "https://github.com/AllenPocketGamer/bevy_wgsl_utils.git", branch = "master" }
bevy_egui = "0.31.0"
bevy_panorbit_camera = { version = "0.21.*", features = ["bevy_egui"] }
log = { version = "0.4", features = ["max_level_debug", "release_max_level_warn"] }
rand = "0.8.0"
rand_chacha = "0.3.1"
bytemuck = { version = "1.7.0", features = ["derive"] }