room4doom/Cargo.toml

76 lines
1.7 KiB
TOML
Executable File

[workspace]
members = [
"wad",
"game-exe",
"gameplay",
"gamestate",
"gamestate-traits",
"intermission/doom",
"statusbar/doom",
"input",
"menu/doom",
"render/render-target",
"render/software",
"sound/traits",
"sound/sdl2",
"sound/nosnd",
"multigen",
"hud-util",
"hud-messages/doom",
"finale/doom"
]
[workspace.package]
version = "0.9.0"
[workspace.dependencies]
wad = { path = "./wad" }
input = { path = "./input" }
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-target = { path = "./render/render-target" }
render-soft = { path = "./render/software" }
render-opengl = { path = "./render/opengl" }
glam = "*"
golem = { git = "https://github.com/flukejones/golem/" }
sdl2 = { git = "https://github.com/Rust-SDL2/rust-sdl2", features = ["mixer", "bundled"] }
gumdrop = "~0.8"
log = "*"
env_logger = { version = "^0.9", default-features = false, features = ["termcolor", "atty"] }
dirs = "~4.0"
toml = "0.5"
serde = { version = "1.0", features = ["serde_derive"] }
#[workspace.dependencies.cargo-husky]
#version = "1"
#default-features = false
#features = ["user-hooks"]
[profile.release]
lto = true
debug = false
opt-level = 3
panic = "abort"
[profile.dev]
debug = true
opt-level = 3
[profile.bench]
debug = false
opt-level = 3