-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (35 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
36 lines (35 loc) · 1.22 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
[workspace]
members = [
"bonk",
"bonk_gui",
"demo_platformer",
"engine",
"engine_protocol",
"engine_types",
"prefab_compiler",
"system_loader",
]
resolver = "3"
[workspace.dependencies]
libloading = "0.8"
anyhow.version = "1"
lazy_vulkan.path = "../lazy_vulkan"
clap = { version = "4", features = ["derive"] }
# hecs.path = "../hecs"
hecs.version = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
winit = "0.30.12"
glam = { version = "0.30.5", features = ["serde"] }
# yakui = { git = "https://github.com/SecondHalfGames/yakui.git", rev = "797aeccbab1e269c88d0c39df8e6fe18ce21f97e", version = "0.3.0" }
# yakui-vulkan = { git = "https://github.com/SecondHalfGames/yakui.git", rev = "797aeccbab1e269c88d0c39df8e6fe18ce21f97e", version = "0.3.0" }
# yakui-winit = { git = "https://github.com/SecondHalfGames/yakui.git", rev = "797aeccbab1e269c88d0c39df8e6fe18ce21f97e", version = "0.3.0" }
yakui.path = "../yakui/crates/yakui"
yakui-vulkan.path = "../yakui/crates/yakui-vulkan"
yakui-winit.path = "../yakui/crates/yakui-winit"
lazy_vulkan_gltf.path = "../lazy_vulkan_gltf"
yakui-shadcn.path = "../yakui-shadcn/yakui-shadcn"
bytemuck = "1"
git-version = "0.3"
log = "0.4"
env_logger = "0.11"