-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 1.01 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
[workspace]
members = ["crates/*"]
[workspace.package]
rust-version = "1.69"
edition = "2021"
license = "MIT"
authors = ["alexandre barone <[email protected]>"]
[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0
[workspace.dependencies]
# local crates
camera = { path = "./crates/camera", version = "0.0.0" }
core = { path = "./crates/core", version = "0.0.0" }
engine = { path = "./crates/engine", version = "0.0.0" }
input = { path = "./crates/input", version = "0.0.0" }
sandbox = { path = "./crates/sandbox", version = "0.0.0" }
vulkan-imgui = { path = "./crates/vulkan-imgui", version = "0.0.0" }
vulkan-renderer = { path = "./crates/vulkan-renderer", version = "0.0.0" }
vulkan-renderer-2d = { path = "./crates/vulkan-renderer-2d", version = "0.0.0" }
# non-local crates
ash = { version = "0.37.0", default-features = false, features = ["linked", "debug"] }
ash-window = "0.10.0"
cgmath = "0.18.0"
image = "0.24"
log = "0.4.17"
winit = "0.27.2"