summaryrefslogtreecommitdiff
path: root/graphics/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/Cargo.toml')
-rw-r--r--graphics/Cargo.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml
new file mode 100644
index 0000000..0842f90
--- /dev/null
+++ b/graphics/Cargo.toml
@@ -0,0 +1,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