-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (61 loc) · 1.69 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (61 loc) · 1.69 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "wgpu_pbr"
version = "0.1.0"
edition = "2024"
[workspace]
members = [
"crates/lentille_render",
"crates/lentille_core",
"crates/lentille_wgpu_utils",
"crates/lentille_wgpu_macros",
"crates/lentille_math",
]
[workspace.dependencies]
rand = "0.8.5"
half = "2.6.0"
bytemuck = { version = "1.19.0", features = ["derive"] }
uuid = { version = "1.11.0", features = ["v4"] }
anyhow = "1.0.92"
env_logger = "0.11"
pollster = "0.4.0"
derive_builder = "0.20.2"
wesl = "0.4.0"
# graphics
winit = { version = "0.30", features = ["rwh_05"] }
wgpu = { version = "29", features = ["naga-ir", "trace"] }
cgmath = "0.18.0"
# bevy
bevy_ecs = { version = "0.18", features = ["default", "debug"] }
bevy_app = "0.18"
bevy_log = "0.18"
bevy_reflect = "0.18"
[dependencies]
bevy_app = { workspace = true }
bevy_ecs = { workspace = true }
bevy_log = { workspace = true }
wgpu = { workspace = true }
winit = { workspace = true }
rand = { workspace = true }
color-backtrace = { version = "0.7" }
tiny_bail = "0.4.3"
# egui
egui = { version = "0.34", features = ["serde"] }
egui-wgpu = "0.34"
egui-winit = "0.34"
egui_ltreeview = "0.7"
egui_dock = { version = "0.19", features = ["serde"] }
# serialization
serde = { version = "1", features = ["derive"] }
ron = "0.8"
# Workspace
lentille_render = { path = "crates/lentille_render" }
lentille_core = { path = "crates/lentille_core" }
lentille_math = { path = "crates/lentille_math" }
lentille_wgpu_utils = { path = "crates/lentille_wgpu_utils" }
lentille_wgpu_macros = { path = "crates/lentille_wgpu_macros" }
bytemuck = { workspace = true }
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
tracing-chrome = "0.7.2"
tracing-log = "0.2.0"
wgpu-subscriber = "0.1.0"