From b11f074ceba10af62b35b414ecaa51a8f13c6550 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 7 Oct 2025 11:01:19 -0400 Subject: initial baseline --- graphics/Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 graphics/Cargo.toml (limited to 'graphics/Cargo.toml') 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 -- cgit v1.2.3-freya