-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
45 lines (40 loc) · 1.21 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
[workspace]
resolver = "2"
members = ["input", "camera", "graphics"]
[workspace.dependencies]
async-trait = "0.1.83"
bytemuck = { version = "1.21.0", features = ["derive"] }
thiserror = "2.0.9"
winit = { version = "0.30.7", features = ["serde"] }
image = "0.25.5"
guillotiere = "0.6.2"
serde = { version = "1.0.215", features = ["derive"] }
log = "0.4.22"
cosmic-text = { version = "0.12.1", features = ["shape-run-cache"] } #git = "https://github.com/pop-os/cosmic-text"
ordered-float = { version = "4.6.0", features = ["serde"] }
lru = "0.12.5"
glam = { version = "0.29.2", features = ["bytemuck", "mint"] }
lyon = "1.0.1"
smol_str = "0.3.2"
indexmap = "2.7.0"
slotmap = "1.0.7"
ahash = {version = "0.8.11", features = ["serde"]}
slab = "0.4.9"
[workspace.dependencies.camera]
package = "ascending_camera"
path = "./camera"
version = "0.5.0"
[workspace.dependencies.input]
package = "ascending_input"
path = "./input"
version = "0.4.0"
[workspace.dependencies.naga]
#git = "https://github.com/gfx-rs/naga"
#rev = "76003dc0035d53a474d366dcdf49d2e4d12e921f"
version = "24.0.0"
features = ["wgsl-in"]
[workspace.dependencies.wgpu]
#git = "https://github.com/gfx-rs/wgpu"
#rev = "061e04b"
#path = "../wgpu-trunk/wgpu"
version = "24.0.0"