forked from setzer22/blackjack
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (29 loc) · 1.29 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
[workspace]
members = [
"blackjack_commons",
"blackjack_engine",
"blackjack_ui",
"blackjack_godot",
"blackjack_macros",
]
resolver = "2"
# Image loading is too slow in debug mode. This compiles all dependencies with optimizations.
[profile.dev.package."*"]
opt-level = 3
[patch.crates-io]
# This is necessary until egui 0.20, because blackjack needs the changes from this PR:
# https://github.com/emilk/egui/pull/2051
egui = { git = "https://github.com/setzer22/egui", branch = "egui_0_19_plus_pr_2051" }
egui-winit = { git = "https://github.com/setzer22/egui", branch = "egui_0_19_plus_pr_2051" }
egui-wgpu = { git = "https://github.com/setzer22/egui", branch = "egui_0_19_plus_pr_2051" }
# NOTE: These patches are only used for development, and should be left
# commented out in any commits to the 'main' branch
# egui_wgpu_backend = { path = "../egui_wgpu_backend" }
# egui_winit_platform = { path = "../egui_winit_platform" }
# egui_node_graph = { path = "../egui_node_graph/egui_node_graph", features = ["persistence"] }
# egui = { path = "../egui/egui" }
# egui-winit = { path = "../egui/egui-winit" }
# egui-wgpu = { path = "../egui/egui-wgpu" }
# rend3 = { path = "../rend3/rend3" }
# rend3-routine = { path = "../rend3/rend3-routine" }
# wavefront_rs = { path = "../wavefront_rs" }