-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 707 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 707 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
[workspace]
resolver = "2"
members = [
"code/framework",
"code/guide/getting-started/*",
"code/guide/gpu-data-model/*",
"code/guide/3d/*",
"code/guide/lighting/*",
"code/guide/advanced/*"
]
[workspace.package]
version = "0.1.0"
authors = ["Bromles <bromles@yandex.ru>"]
edition = "2024"
license = "MIT OR Apache-2.0"
publish = false
[profile.release]
lto = true
strip = true
codegen-units = 1
opt-level = 3
[workspace.dependencies]
winit = "0.30"
tracing = "0.1"
tracing-subscriber = "0.3"
wgpu = "29.0"
bytemuck = { version = "1.25", features = ["derive"] }
encase = "0.12"
glam = { version = "0.33", features = ["debug-glam-assert", "encase", "bytemuck"] }
pollster = "0.4"