-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (61 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "andromeda"
version = "0.1.0"
edition = "2021"
[workspace]
members = [
".",
"crates/scheduler",
"crates/app",
"crates/camera",
"crates/math",
"crates/hot_reload",
"crates/util",
"crates/thread",
"crates/world",
"crates/input",
"crates/inject",
"crates/gui",
"crates/renderer",
"crates/events",
"crates/assets",
"crates/gfx",
"crates/statistics",
"crates/pass",
"crates/brush",
"crates/time",
"crates/error",
]
[dependencies]
anyhow = "1.0.70"
glam = "0.24.0"
winit = "0.28.3"
derivative = "2.2.0"
futures = "0.3.28"
pretty_env_logger = "0.4.0"
tokio = { version = "1.27.0", features = ["full"] }
phobos = { git = "https://github.com/NotAPenguin0/phobos-rs", features = ["hlsl", "rayon"] }
egui = "0.21.0"
world = { path = "crates/world" }
renderer = { path = "crates/renderer" }
gui = { path = "crates/gui" }
scheduler = { path = "crates/scheduler" }
inject = { path = "crates/inject" }
assets = { path = "crates/assets" }
gfx = { path = "crates/gfx" }
hot_reload = { path = "crates/hot_reload" }
input = { path = "crates/input" }
camera = { path = "crates/camera" }
events = { path = "crates/events" }
math = { path = "crates/math" }
statistics = { path = "crates/statistics" }
util = { path = "crates/util" }
[[bin]]
name = "andromeda"
path = "crates/app/src/main.rs"
[profile.release-with-debug]
inherits = "release"
debug = true
# image is slow as fuck lol
[profile.dev.package.image]
opt-level = 3