blob: 5bb76802f9b06653ffdd0fa11915591863018ca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[package]
name = "graphics"
version = "0.1.0"
edition = "2024"
[dependencies]
dungeon = { path = "../dungeon" }
raylib = "5.5"
[target.'cfg(target_os = "linux")'.dependencies]
raylib = { version = "5.5", features = ["wayland"] }
[lints]
workspace = true
[features]
default = []
debug = []
|