summaryrefslogtreecommitdiff
path: root/game/Cargo.toml
blob: 0fb5475f0de6e9a987d983011bb0a831c2552017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "game"
version = "0.1.0"
edition = "2024"

[dependencies]
dungeon = { path = "../dungeon" }
graphics = { path = "../graphics" }

[lints]
workspace = true

[features]
default = ["debug"]
debug = ["graphics/debug"]
wayland = ["graphics/wayland"]