-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
93 lines (73 loc) · 1.74 KB
/
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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "wgpu-samples"
version = "0.1.0"
edition = "2021"
[dependencies]
bytemuck = "1.13.1"
bytemuck_derive = "1.4.1"
futures = "0.3.28"
glam = { version = "0.24.0", features = ["bytemuck"] }
image = { version = "0.24.6", default-features = false, features = [
"jpeg",
"png",
] }
russimp = { version = "2.0.5", features = ["prebuilt", "static-link"] }
wgpu = "0.16.0"
winit = "0.28.6"
[[bin]]
name = "hello-triangle"
path = "samples/hello-triangle/main.rs"
[[bin]]
name = "hello-rectangle"
path = "samples/hello-rectangle/main.rs"
[[bin]]
name = "shaders"
path = "samples/shaders/main.rs"
[[bin]]
name = "shaders-uniform"
path = "samples/shaders-uniform/main.rs"
[[bin]]
name = "textures"
path = "samples/textures/main.rs"
[[bin]]
name = "textures-mixed"
path = "samples/textures-mixed/main.rs"
[[bin]]
name = "transformations"
path = "samples/transformations/main.rs"
[[bin]]
name = "coordinate-systems"
path = "samples/coordinate-systems/main.rs"
[[bin]]
name = "more-cubes"
path = "samples/more-cubes/main.rs"
[[bin]]
name = "camera"
path = "samples/camera/main.rs"
[[bin]]
name = "colors"
path = "samples/colors/main.rs"
[[bin]]
name = "basic-lighting"
path = "samples/basic-lighting/main.rs"
[[bin]]
name = "materials"
path = "samples/materials/main.rs"
[[bin]]
name = "lighting-maps"
path = "samples/lighting-maps/main.rs"
[[bin]]
name = "light-casters-directional"
path = "samples/light-casters-directional/main.rs"
[[bin]]
name = "light-casters-point"
path = "samples/light-casters-point/main.rs"
[[bin]]
name = "light-casters-spotlight"
path = "samples/light-casters-spotlight/main.rs"
[[bin]]
name = "multiple-lights"
path = "samples/multiple-lights/main.rs"
[[bin]]
name = "model-loading"
path = "samples/model-loading/main.rs"