-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
executable file
·91 lines (81 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[workspace]
members = [
"wad",
"game-exe",
"gameplay",
"gamestate",
"gamestate-traits",
"intermission/doom",
"statusbar/doom",
"input",
"math",
"menu/doom",
"render/render-target",
"render/render-trait",
"render/software",
"sound/traits",
"sound/sdl2",
"sound/nosnd",
"multigen",
"hud-util",
"hud-messages/doom",
"finale/doom",
]
default-members = ["game-exe"]
resolver = "2"
[workspace.package]
authors = ["Luke Jones <[email protected]>"]
version = "0.15.3"
edition = "2024"
rust-version = "1.85"
license = "MIT"
[workspace.dependencies]
wad = { path = "./wad" }
input = { path = "./input" }
math = { path = "./math" }
menu-doom = { path = "./menu/doom" }
gameplay = { path = "./gameplay" }
gamestate = { path = "./gamestate" }
gamestate-traits = { path = "./gamestate-traits" }
intermission-doom = { path = "./intermission/doom" }
hud-util = { path = "./hud-util" }
hud-doom = { path = "./hud-messages/doom" }
finale-doom = { path = "./finale/doom" }
statusbar-doom = { path = "./statusbar/doom" }
sound-traits = { path = "./sound/traits" }
sound-sdl2 = { path = "./sound/sdl2" }
sound-nosnd = { path = "./sound/nosnd" }
render-trait = { path = "./render/render-trait" }
render-target = { path = "./render/render-target" }
render-soft = { path = "./render/software" }
coarse-prof = "0.2"
glam = "*"
golem = { git = "https://github.com/flukejones/golem/" }
sdl2 = { git = "https://github.com/Rust-SDL2/rust-sdl2", features = ["unsafe_textures","mixer"] }
argh = "0.1.12"
log = { version = "*" }
simplelog = { version = "*" }
dirs = "~5.0"
nanoserde = { git = "https://github.com/not-fl3/nanoserde.git", default-features = false, features = [
"ron",
] }
#[workspace.dependencies.cargo-husky]
#version = "1"
#default-features = false
#features = ["user-hooks"]
[profile.release]
lto = true
debug = false
opt-level = 3
panic = "abort"
strip = true
codegen-units = 1
[profile.dev]
debug = true
opt-level = 3
codegen-units = 1
[profile.bench]
lto = true
debug = true
opt-level = 3
codegen-units = 1