blob: 03a3be6f6b5eae81bcc307691998cd02fef0680b (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
[package]
name = "pxs"
version = "0.1.0"
edition = "2024"
[package.metadata.bundle]
name = "pxs"
identifier = "com.aberrantflux.pxs"
icon = ["assets/icon.png"]
version = "0.1.0"
copyright = "Copyright © 2026 Kai Stevenson. All rights reserved."
category = "Game"
short_description = "A physics game"
long_description = """
A falling sand physics game with cells, particles, rigidbodies.
"""
[dependencies]
wgpu = "29.0.4"
wgpu-types = "29.0.4"
egui = {version = "0.35.0", features = ["default_fonts"]}
egui-winit = "0.35.0"
egui-wgpu = "0.35.0"
winit = { version = "0.30", features = ["rwh_06"] }
env_logger = "0.11.11"
puffin = "0.20.0"
puffin_http = "0.17.0"
rand = "0.10.2"
rayon = "1.12.0"
futures = "0.3.34"
bytemuck = "1.25.2"
fxhash = "0.2.1"
rapier2d = { version = "0.35.2", features = ["debug-render"] }
glam = "0.33.3"
png = "0.18.1"
toml = "1.1.4"
serde = "1.0.229"
fastnoise-lite = "1.1.1"
[features]
profiler = []
[profile.release]
# lto = true
[profile.dev.package.rapier2d]
opt-level = 3
|