-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (44 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
52 lines (44 loc) · 1.28 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
[workspace]
resolver = "2"
members = [
"te-player",
"te-gamepad",
"te-mapmaker",
"te-renderer",
"te-examples"
]
[workspace.dependencies]
json = "0.12.4"
cgmath = "0.18"
wgpu = "0.18"
winit = "0.29"
bytemuck = { version = "1.4", features = [ "derive" ] }
sorted-vec = "0.8.0"
wgpu_glyph = "0.21"
glyph_brush = "0.7"
gltf = "1.0"
gilrs = "0.10.2"
env_logger = "0.10"
log = "0.4"
pollster = "0.3"
gilrs-core = "0.5.2"
futures-intrusive = "0.5.0"
imgui = "0.12.0"
imgui-wgpu = { git = "https://github.com/Calcoph/imgui-wgpu-rs", rev = "018e919" }
imgui-winit-support = { version = "0.12.0", default-features = false}
imgui-gilrs = { git = "https://github.com/Calcoph/imgui-gilrs", rev = "0261b7f", features = ["winit"] }
[workspace.dependencies.image]
version = "0.24"
default-features = false
features = ["png", "jpeg"]
[workspace.dependencies.te-renderer]
path = "te-renderer"
[workspace.dependencies.te-gamepad]
path = "te-gamepad"
[workspace.dependencies.te-player]
path = "te-player"
features = ["imgui"]
[patch.crates-io]
#imgui = { git = "https://github.com/Calcoph/imgui-rs", branch = "uptodate-winit" }
#imgui-winit-support = { git = "https://github.com/Calcoph/imgui-rs", branch = "uptodate-winit" }
wgpu_glyph = { git = "https://github.com/Calcoph/wgpu_glyph", rev = "967d062" }