summaryrefslogtreecommitdiff
path: root/game/Cargo.toml
blob: af4a53309f960f43938d5d596ae946a8a92d48ca (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
[package]
name = "game"
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
publish.workspace = true
rust-version.workspace = true

[dependencies]
dungeon.workspace = true
graphics.workspace = true

[lints]
workspace = true

[features]
default = ["x11"]
x11 = ["graphics/x11"]
wayland = ["graphics/wayland"]
sdl = ["graphics/sdl"]
static = ["graphics/static"]

# desktop dependencies
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
argh.workspace = true