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

[dependencies]
anyhow = "1"
dungeon = { path = "../dungeon" }
raylib = "5.5"

[target.'cfg(target_os = "linux")'.dependencies]
raylib = { version = "5.5", features = ["wayland"] }

[lints]
workspace = true

[features]
default = []
debug = []