-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (34 loc) · 1007 Bytes
/
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
[workspace]
members = ["crates/fate_renderer", "crates/fate_rt", "crates/libs/*"]
resolver = "2"
[workspace.package]
name = "fate"
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
vulkan = { path = "crates/libs/vulkan" }
rendering = { path = "crates/libs/rendering" }
scene = { path = "crates/libs/scene" }
asset = { path = "crates/libs/asset" }
audio = { path = "crates/libs/audio" }
gltf_loader = { path = "crates/libs/gltf_loader" }
application = { path = "crates/libs/application" }
log = "0.4"
env_logger = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
clap = "3.1"
cgmath = "0.18"
rand = "0.8"
lerp = "0.5"
byteorder = "1.4"
mikktspace = "0.3"
image = "0.24"
ash = { version = "0.37", features = ["loaded"] }
ash-window = "0.12"
raw-window-handle = "0.5"
winit = { version = "0.29", default-features = false, features = ["rwh_05"] }
gltf = "1.3"
egui = "0.27"
egui-winit = "0.27"
egui-ash-renderer = { version = "0.2.0", features = ["dynamic-rendering"] }