diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-10-30 14:10:28 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-10-30 14:10:28 -0400 |
| commit | 959a25218f0cbf3c63128b314eab033ff32127c1 (patch) | |
| tree | 81cbba54e6c14a8ec304959458fca48d01f19b39 /graphics/Cargo.toml | |
| parent | Merge branch 'wave-function-collapse' into 'main' (diff) | |
| download | DungeonCrawl-959a25218f0cbf3c63128b314eab033ff32127c1.tar.gz DungeonCrawl-959a25218f0cbf3c63128b314eab033ff32127c1.tar.bz2 DungeonCrawl-959a25218f0cbf3c63128b314eab033ff32127c1.zip | |
graphics: move wayland support to a feature
Diffstat (limited to 'graphics/Cargo.toml')
| -rw-r--r-- | graphics/Cargo.toml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml index 28fd32a..14679da 100644 --- a/graphics/Cargo.toml +++ b/graphics/Cargo.toml @@ -7,12 +7,10 @@ edition = "2024" dungeon = { path = "../dungeon" } raylib = "5.5" -#[target.'cfg(target_os = "linux")'.dependencies] -#raylib = { version = "5.5", features = ["wayland"] } - [lints] workspace = true [features] default = [] debug = [] +wayland = ["raylib/wayland"] |