-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (32 loc) · 755 Bytes
/
Cargo.toml
File metadata and controls
40 lines (32 loc) · 755 Bytes
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
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "rkt"
version = "0.2.0"
authors = ["Jean Mertz <jean@mertz.fm>"]
edition = "2018"
[workspace]
members = ["lib/game-loop"]
[features]
default = ["metal"]
metal = ["gfx-backend-metal"]
# dx12 = ["gfx-backend-dx12"]
# vulkan = ["gfx-backend-vulkan"]
[dependencies]
gfx-hal = "0.2"
arrayvec = "0.4"
winit = "0.19"
shaderc = "0.3"
game-loop = { path = "lib/game-loop" }
[dependencies.log]
version = "0.4"
[dependencies.env_logger]
version = "0.6"
default-features = false
[target.'cfg(target_os = "macos")'.dependencies.gfx-backend-metal]
version = "0.2"
optional = true
# [dependencies.gfx-backend-vulkan]
# version = "0.2"
# optional = true
# [target.'cfg(windows)'.dependencies.gfx-backend-dx12]
# version = "0.2"
# optional = true