wgpu/Cargo.toml

16 lines
680 B
TOML
Raw Normal View History

[package]
2018-09-14 12:07:14 +00:00
name = "gpu-native"
version = "0.1.0"
authors = ["Dzmitry Malyshau <kvark@mozilla.com>"]
[features]
2018-09-14 13:16:30 +00:00
default = []
[dependencies]
2018-09-14 16:01:56 +00:00
gfx-hal = { git = "https://github.com/gfx-rs/gfx", rev = "a435a05" } # required by gfx-memory
gfx-backend-empty = { git = "https://github.com/gfx-rs/gfx", rev = "a435a05" }
gfx-backend-vulkan = { git = "https://github.com/gfx-rs/gfx", rev = "a435a05", optional = true }
gfx-backend-dx12 = { git = "https://github.com/gfx-rs/gfx", rev = "a435a05", optional = true }
gfx-backend-metal = { git = "https://github.com/gfx-rs/gfx", rev = "a435a05", optional = true }
2018-09-15 17:04:36 +00:00
gfx-memory = { git = "https://github.com/gfx-rs/gfx-memory", rev = "483d64d" }