forked from mistodon/gfx-hal-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (21 loc) · 661 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (21 loc) · 661 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
[package]
name = "gfx-hal-tutorials"
version = "0.1.0"
authors = ["Claire Harris <wishing.engine@gmail.com>"]
[dependencies]
image = "~0.19.0"
winit = "=0.17.2"
[dependencies.gfx-hal]
git = "https://github.com/gfx-rs/gfx"
rev = "7b7a6353"
[target.'cfg(target_os = "macos")'.dependencies.gfx-backend-metal]
git = "https://github.com/gfx-rs/gfx"
rev = "7b7a6353"
[target.'cfg(windows)'.dependencies.gfx-backend-dx12]
git = "https://github.com/gfx-rs/gfx"
rev = "7b7a6353"
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.gfx-backend-vulkan]
git = "https://github.com/gfx-rs/gfx"
rev = "7b7a6353"
[build-dependencies]
glsl-to-spirv = "=0.1.6"