summaryrefslogtreecommitdiff
path: root/graphics/Cargo.toml
blob: 0687272999cabcf92cae1efde3e7ab18e3a91773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "graphics"
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
publish.workspace = true
rust-version.workspace = true

[dependencies]
audio.workspace = true
dungeon.workspace = true
raylib.workspace = true

[lints]
workspace = true

[features]
default = []
x11 = ["raylib/GLFW_BUILD_X11"]
wayland = ["raylib/wayland", "raylib/GLFW_BUILD_WAYLAND"]
sdl = ["raylib/sdl", "raylib/SUPPORT_MODULE_RTEXT"]
static = ["audio/static"]

# Individual features seem to currently be
# broken on windows
[target.'cfg(target_os = "windows")'.dependencies.raylib]
workspace = true
default-features = true