blob: 0842f90ec9a72483052cc4dbf4875878cf039352 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[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
|